Support Questions:How can I add a login/password box to my existing site, which will take users into the hosted backend

From HasOffers

So set up a custom login box, you can take the login / password form elements from your HasOffers login page, and place them on your website as long as they post to your HasOffers application. The action must be set to the domain of your HasOffer application. See sample code below:

<form method="post" action="http://networkID.hasoffers.com/">
    <input type="hidden" name="_method" value="POST" />
    Email:
    <input name="data[User][email]" type="text" value="" />
    <br/>
    Password:
    <input type="password" name="data[User][password]" value=""/>
    <input type="submit" value="Login" />
</form>

 
Email this page to a friend or co-worker