+ Reply to Thread
Results 1 to 2 of 2
Thread: Survey Login Screen
-
06-03-2008 12:04 AM #1Aussie_User Guest
Survey Login Screen
Is it possible to edit the login screen for a survey? Respondents to a survey I have created can choose my survey from a selection on offer through my workplace. A pop up window then opens asking for username and password, can I edit this pop up somehow, providing additional instructions as to what un & pw are?
Some very smart and helpful person has removed the login information from an invitation that was distributed via hard copy to 1000+ locations. Username and password are crucial for collating survey responses with a unique reference number that will link to additional data once the survey has been completed. I feel that I am losing respondents because of this.
-
06-03-2008 10:54 AM #2
Administrator
- Join Date
- Mar 2007
- Posts
- 385
There is no built in way to display a message to users on the Login.aspx page. That being said if you have access to your database it would be possible to alter some of the existing text on the page.
The simplest option would be to edit the page title. To edit this text you will need to connect to your Checkbox database and run the following stored procedure.
--BEGIN
exec ckbx_Text_Set '/pageText/login.aspx/title', 'en-US', 'Your Message'
--END
If the title font is too large or does not provide enough space it would also be possible to edit the new user label. This label is only displayed when Checkbox has been configured to allow public registration. This setting can be enabled by navigating to Settings -> Users & Security and ensuring that the “Allow Public Registration” option is checked. To edit the label text you will need to connect to your Checkbox database and run the following stored procedure.
--BEGIN
exec ckbx_Text_Set '/pageText/Login.aspx/newUser', 'en-US', 'Your Message'
--END
With this option enabled users will be able to register their own accounts. It will not be possible to disable this functionality and display the new user label; however, you can make it difficult for users to register. If you run the following stored procedure the link to the registration page will not be displayed. In order to register a user would need to know the registration url.
--BEGIN
exec ckbx_Text_Set '/pageText/Login.aspx/register', 'en-US', ''
--END
Please note that you will need to restart IIS after making your change as text is cached.


LinkBack URL
About LinkBacks
Reply With Quote
