Jump to content

Multiple login forms?


wprins

Recommended Posts

Would it be possible to include multiple login forms in one application, each perhaps accessible via (say) distinct access URL?  If so how?

 

This would be to enable different types of personnel to be given a customer/themed/dedicated login page by user type. 

 

Thanks

 

Walter

Link to comment
Share on other sites

Use one login form, and use panels as you want and on every panel put the controls you want to show the user and examine the parameters you send to the app and based on that display the panel you want, let's say:

 

 pnl_Customers

 pnl_suppliers 

 pnl_admin 

 

and send parameters:

http://localhost:8077/?param1=customer&param2=....

And in form show check the parms:

 clnt:=UniApplication.Parameters.Values['param1'];

 pnlCustomer.visible:=clnt='customer';
 ...
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...