Support Questions:How can I set up a custom login box

From HasOffers

To set up a custom login box on your website, you can take the login / password form elements from your HasOffers login page, and place them on your website as long as the form posts to your HasOffers application. You do not need to use the API to place a simple login box on your main company website. The API login functionality is for networks wanting to authenicate users for their own applications.

The HTML code below is for login element that logs users in to your HasOffers network. Use the code below and place it on your website. The action must be set to the domain of your HasOffer application.


<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