Custom Logon Page (1.0 only)
Custom logon pages may be built to access Four51. They allow you to create a unique logon experience for your users with a custom look, feel and branding. For example, you can incorporate a logon form to Four51 into your own company's website.
Note: These instructions only apply to sites on 1.0.
Http vs. Https
For security purposes, Four51 requires that forms and links passing username and password information to the application be submitted via https.
About Logon Parameters
Logging into the Four51 application requires using the following URL with 'username' and 'password' parameters.
https://www.four51.com/ui/logon.aspx?username=[[username]]&password=[[password]]
Where [[username]] is a person's username and [[password]] is their password.
Example
This example demonstrates an html-based logon form for the 1.0 application only that allows a user to enter their username and password into fields and click a login button. While html is the example shown here, you can construct logon forms using any technology you choose. Feel free to use the example code as a basis for constructing your own custom logon page.
<html> <body> <table align="center" border="0" cellspacing="5" cellpadding="2"> <form method="post" action="https://www.four51.com/ui/logon.aspx"> <tr> <td><img width="350" height="200" src="http://www.logoopenstock.com/media/users/379/778/raw/65edc5b9fd755017e29be413f20bb444-logo-logo-design-download-free-psd-file.jpg"></td> </tr> <tr> <td><font face="Tahoma, Arial, Helvetica" color="#000000" size="3"><b>Username</b></font></td> </tr> <tr> <td><input type=text name="UserName" value="" Size="25"></td> </tr> <tr> <td> </td> </tr> <tr> <td><font face="Tahoma, Arial, Helvetica" color="#000000" size="3"><b>Password</b></font></td> </tr> <tr> <td><input type=password name="Password" Size="25" Value =""></td> </tr> <tr> <td><INPUT Type = image Name=logon Alt="Log On" Src="http://www.freeiconspng.com/uploads/login-button-png-13.png" Border=0 Width="150" Height="25"></td> </tr> </form> </table> </body> </html>
Additional logon features allow for a branded logon page configuration or for advanced capabilities like extended error handling. For more information, read the related articles.
Reference Material:
Related Articles:
Logon Page Configuration
Advanced Custom Logon Page
Labels: Logon parameters, logon page, custom logon