Login Box API
Lime Support
Follow
Here is a code that can be added to a webpage in order to log in.
- You need to replace <WHITE LABEL URL> with the White Label URL found under Account Setup > General
- This will open the dashboard in a new window.
- If you want it to be opened in the same window then delete the target="#"
<form method="post" action="http://<WHITE LABEL URL>/loginRouter" target="#">
<h3>Login</h3>
<input type="hidden" name="j_security_check" value="j_security_check"/>
<table border="0" cellpadding="0" cellspacing="1">
<tr>
<td>Email / User: </td>
<td><input type="text" name="j_username" /></td>
<tr>
<tr>
<td>Password: </td>
<td><input type="password" name="j_password" /></td>
</tr>
<tr>
<td> </td>
<td align="right" style="padding-top: 10px"><input type="submit" value="Login" /></td>
</tr>
</table>
</form>
Comments
0 comments
Article is closed for comments.