Online Store Builder & eCommerce Checkout System

Welcome to our Support Portal!

A place where you can easily find solutions and ask questions

Call: +1-866-324-2764
Home Spacer|Spacer FAQ Spacer|Spacer Contact Us Spacer|Spacer Create Ticket Spacer|Spacer Announcements Spacer
Spacer

POPULAR TOPICS

Spacer



How can I make my own login box?

Beginners, to insert a login box use the keyword %OBJ_LOGIN_OBJ%, this will automatically insert a basic login box where the keyword is placed.


Advanced users, create a custom login box using the specs below:

1. Post the form to check_out.asp

<form method='POST' action='check_out_action.asp'>

2. Include the hidden field named Form_Name

<input type='Hidden' name='Form_Name' value='Check_Out'>

3. Include a field for the user to input the the email and password

<input type='text' name='User_id' value=''>

<input type='text' name='Password' value=''>

4. Include a submit button or image as below

<input type='Image' src='imagepathhere.gif' name='Login'>

5. Include an end of form tag

</form>

These are the minimum requirements for a login box to function correctly.  For an example of a working login page please refer to the check_out.asp page.