isiah Posted June 11, 2009 Share Posted June 11, 2009 I integrated a login box in the header of my site right now its basically useless its got the two forms for user name and password and a submit button but it doesn't work for instance if you try to login in the box my site does nothing it doesn't load or take you to another page so i figure im missing some coding for this to be able to connect and actually be able to log someone in. My code is below if anyone knows how to fix it please let me know what i have to do thanks! <!-- -------------------------------------------------------------------- Login Anywhere 1.0 by Skeedo.com Enterprises info@skeedo.com Released under GNU General Public License for use with OSCommerce -------------------------------------------------------------------- --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <META NAME="Generator" CONTENT="EditPlus"> <META NAME="Author" CONTENT=""> <META NAME="Keywords" CONTENT=""> <META NAME="Description" CONTENT=""> </HEAD> <BODY> <table border="0" width="100%" height="100%" cellspacing="0" cellpadding="0" border="0" style="height:5px; background:url(images/2_bg.gif) repeat-x top" class="infoBoxContents"> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main" colspan="2"><b><?php echo ("Customers Login"); ?><b></td> </tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '10%', '10'); ?></td> </tr> <tr> <td class="main"><b><?php echo ENTRY_EMAIL_ADDRESS; ?></b><?php echo tep_draw_separator('pixel_trans.gif', '3%', '1'); ?> <?php echo tep_draw_input_field('email_address'); ?> </tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td class="main"><b><?php echo ENTRY_PASSWORD; ?></b><?php echo tep_draw_separator('pixel_trans.gif', '12%', '10'); ?> <?php echo tep_draw_password_field('password'); ?> </tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td> <?php echo tep_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN); ?> </td> </tr> <tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <td class="smallText" colspan="2" align="middle"><?php echo '<a href="' . tep_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . ("Forgot Password") . '</a>'; ?></td> </tr> </table> </BODY> </HTML> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.