Cool redirect from sign up
- bigphil627
- Posts: 21
- Joined: Thu Oct 22, 2015 11:12 am
- Location: New Orleans
- Contact:
Cool redirect from sign up
After hitting submit, many people get confused after registering and do not see the login link at the top of the screen.
Like in this picture.
I have a fix for that. After hitting submit to register, It will redirect you to the log-in page so they know they are registered.
Stops people reregistering 2,3 times, because they didn't see that log-in link in the pic.
On /userSignUp.asp around line 145 look for the code
Then change it to
That's all.
Please back up your file before doing this so you will have a backup
Hope this helps!
Bigphil627
Like in this picture.
I have a fix for that. After hitting submit to register, It will redirect you to the log-in page so they know they are registered.
Stops people reregistering 2,3 times, because they didn't see that log-in link in the pic.
On /userSignUp.asp around line 145 look for the code
Code: Select all
'Otherwise, show a message indicating the user may now log in.
else
call DisplaySuccessMessage("Username '" & username & "' added. You may now <a href=""userLogin.asp""><B>login</B></a>.")
end if
Code: Select all
'Otherwise, show a message indicating the user may now log in.
else
Response.Redirect "https://www.YOURSITE.com"
end if
That's all.
Please back up your file before doing this so you will have a backup
Hope this helps!
Bigphil627
