Login Page [message #519057] |
Tue, 09 August 2011 03:13  |
 |
segunomobi
Messages: 2 Registered: August 2011 Location: Nigeria
|
Junior Member |
|
|
How can I add a sign up page to my login page and make it loop like that of Facebook login/signup page?
|
|
|
Re: Login Page [message #519073 is a reply to message #519057] |
Tue, 09 August 2011 04:55   |
c_stenersen
Messages: 255 Registered: August 2007
|
Senior Member |
|
|
I'm not sure what you mean by loop, so if you could explain that a bit better it might be easier to give you a solution which could fit your needs.
But I guess you already have a login page with username and password which you use. If you have authentication on the application then this is the page which should show for anyone not logged in. (Page 101 normally) Then you can add a page with public access for the sign up functionality. (Page properties -> security -> authentication. Then set it to "page is public") And afterwards you can add a link on your login page to this sign up page. I guess you'll insert the user's data into a table somewhere, and then you can use that table in an authentication scheme you make through shared components -> security -> authentication schemes, to determine if the person has access or not.
|
|
|
|
|
Re: Login Page [message #524225 is a reply to message #519141] |
Thu, 22 September 2011 05:22   |
BBMamun
Messages: 94 Registered: February 2010 Location: Dhaka, Bangladesh
|
Member |
|
|
You have to create two applications on the same workspace, one without any authentication to request for an user ID, and other for the actual application. Once user has requested for the User Id the workspace admin will approve and assign user id and password for the end user. Then that user will log on to the actual application.
|
|
|
Re: Login Page [message #524254 is a reply to message #524225] |
Thu, 22 September 2011 07:19  |
c_stenersen
Messages: 255 Registered: August 2007
|
Senior Member |
|
|
Different pages in the same application can have different access, so two applications shouldn't be needed. Just make the registration page public. (or add the registration to the login page which is already public as OP wanted)
|
|
|