Custom Login Page
Download The HTML Code | Using Custom Form Posting | What Do I Need? | How Do I Create The Login Page? | Example Login Page With Code
Workamajig allows you to build your own custom login page on your site or work portal. The login credentials for the user are then processed through to Workamajig.
Download The HTML Code
You can download the text file of this code HERE for Platinum only.
Then have your web developers review this guide to then set up a custom login page on a site you manage.
Using Custom Form Posting
Below is a simple sample form that can be used to create the Workamajig login section on your website or work portal for access to Workamajig. You use the hidden fields to pass information to our site about your company and where to return to if there is a problem logging into the site. It is important that you keep the names of the fields the same.
What Do I Need?
- Company Key=CK: You will need to find the company key located in Workamajig via Menu > Admin/Manager > System Setup > Account Information > Visual Appearance. CK will be replaced with the number found here.
- Logos and Overall Appearance: You are the ones who maintain the look and feel of the login page you create and host.
How Do I Create The Login Page?
As most companies already have their website or work portal created, you need only add the code found below to your current HTML page.
You MUST adjust the following lines for the login page to work successfully:
- <form id="Form1" method="post" action="https://yourwebsite.com/default.aspx" method="post"> : You must enter the URL that your company uses to access Workamajig. If you are hosted with Workamajig this will be app#.Workamajig.com. Of course, substituting the server number for the # symbol.
- <input type="hidden" name="ErrorReturnPage" value="https://yourwebsite/default.aspx?CK=enter_your_company_key_code&LogoPos=1"> : You must enter the URL that your company uses to access Workamajig and also the Company Key.
If an error is generated, the user will be returned to the branded page specified along with a query string variable (Error).
The possible error codes are:
1 - A User ID is required
2 - A Password is required
3 - Invalid User ID
4 - Invalid Password
5 - User ID is no longer active
6 - Your company is no longer active
7 - Your company has been locked
The resulting return URL would be http://yoursite.com?Error=1 NOTE: This will be displayed in the address bar of the browser.
If the login is successful, you will be directed to the main dashboard.
Example Login Page With Code
You can download a text file of this code HERE.
Below is an example of what a basic login page will look like using the HTML code shown after: