Adding an Intervals login to your web site
December 9th, 2008 by John Reeve
Wondering how to add an Intervals login form to your web site? Here is some HTML code to get you started:
<form method="POST" action="http[s]://[your.intervals.domain]/">
<input type="hidden" name="module" value="people" />
<input type="hidden" name="action" value="loginsubmit" />
Username: <input type="text" name="f_username" value="" /><br />
Password: <input type="password" name="f_password" value="" /><br />
<input type="submit" />
</form>
* If you have a premium or top shelf account, use https://
** Form action should be your domain, i.e. https://pelago.projectaccount.com/
The finished result should look something like this:

