<form method="post" action="http://domain.activecollab.net/login?re_route=assignments"> Email: <input type="text" name="login[email]" /> Password: <input type="password" name="login[password]" /> Remember me: <input type="checkbox" name="login[remember]" /> <input type="hidden" name="submitted" value="submitted" /> <button type="submit">Login!</button> </form>
This information has been extended and moved in Integrating activeCollab Login with Your Website article in Developer's Manual. Please check it out and note that only that article will be kept up to date.
-------------------------
Original Post:
If you need to provide a custom login form (from your website or something like that) you can do it by creating a form that submits a POST request to login page with following fields:
- login[email]
- login[password]
- login[remember]
and hidden field name submitted with value submitted. Here is a simple form that can log you in our trial setup: