[ Index ] |
PHP Cross Reference of osCMax 2.0.4 |
[Summary view] [Print] [Text view]
1 <?php 2 /* 3 $Id: create_account.php 3 2006-05-27 04:59:07Z user $ 4 5 osCMax Power E-Commerce 6 http://oscdox.com 7 8 Copyright 2006 osCMax2005 osCMax, 2002 osCommerce 9 10 Released under the GNU General Public License 11 12 THIS IS BETA - Use at your own risk! 13 Step-By-Step Manual Order Entry Verion 0.5 14 Customer Entry through Admin 15 */ 16 17 require ('includes/application_top.php'); 18 19 require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_CREATE_ACCOUNT); 20 21 ?> 22 <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> 23 <html <?php echo HTML_PARAMS; ?>> 24 <head> 25 <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> 26 <title><?php echo TITLE ?></title> 27 <link rel="stylesheet" type="text/css" href="includes/stylesheet.css"> 28 <?php require ('includes/form_check.js.php'); ?> 29 </head> 30 <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="#FFFFFF"> 31 <!-- header //--> 32 <?php 33 require (DIR_WS_INCLUDES . 'header.php'); 34 ?> 35 <!-- header_eof //--> 36 37 <!-- body //--> 38 <table border="0" width="100%" cellspacing="2" cellpadding="2"> 39 <tr> 40 <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="1" cellpadding="1" class="columnLeft"> 41 <!-- left_navigation //--> 42 <?php require (DIR_WS_INCLUDES . 'column_left.php'); ?> 43 <!-- left_navigation_eof //--> 44 </table></td> 45 <!-- body_text //--> 46 <td width="100%" valign="top"><form name="account_edit" method="post" <?php echo 'action="' . tep_href_link(FILENAME_CREATE_ACCOUNT_PROCESS, '', 'SSL') . '"'; ?> onSubmit="return check_form();"><input type="hidden" name="action" value="process"><table border="0" width="100%" cellspacing="0" cellpadding="0"> 47 <tr> 48 <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> 49 <tr> 50 <td class="pageHeading"><?php echo HEADING_TITLE; ?></td> 51 </tr> 52 </table></td> 53 </tr> 54 <?php 55 if (sizeof($navigation->snapshot) > 0) { 56 ?> 57 <tr> 58 <td class="smallText"><br><?php echo sprintf(TEXT_ORIGIN_LOGIN, tep_href_link(FILENAME_LOGIN, tep_get_all_get_params(), 'SSL')); ?></td> 59 </tr> 60 <?php 61 } 62 ?> 63 <tr> 64 <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> 65 </tr> 66 <tr> 67 <td> 68 <?php 69 //$email_address = tep_db_prepare_input($HTTP_GET_VARS['email_address']); 70 $account['entry_country_id'] = STORE_COUNTRY; 71 $account['entry_zone_id'] = STORE_ZONE; 72 73 require (DIR_WS_MODULES . 'account_details.php'); 74 ?> 75 </td> 76 </tr> 77 <tr> 78 <td align="right" class="main"><br><?php echo tep_image_submit('button_confirm.gif', IMAGE_BUTTON_CONTINUE); ?></td> 79 </tr> 80 </table></form></td> 81 <!-- body_text_eof //--> 82 <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2"> 83 </table></td> 84 </tr> 85 </table> 86 <!-- body_eof //--> 87 88 <!-- footer //--> 89 <?php 90 require (DIR_WS_INCLUDES . 'footer.php'); 91 ?> 92 <!-- footer_eof //--> 93 <br> 94 </body> 95 </html> 96 <?php require (DIR_WS_INCLUDES . 'application_bottom.php'); ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Fri Jan 1 13:43:16 2010 | Cross-referenced by PHPXref 0.7 |