Results 1 to 10 of 20

Hybrid View

  1. #1
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Confirm email address length needs changing

    If you'll click on the login link you'll notice that one email input length is 223 and the other is 183px. I've ran a search in the developers toolkit trying to find this 183 px specification so I can change it but so far no luck. Has anyone attempted to make the two match before?

    Ian
    redlinestands.com/catalog

  2. #2
    Join Date
    Apr 2006
    Location
    Ohio
    Posts
    6,162
    Plugin Contributions
    0

    Default Re: Confirm email address length needs changing

    Quote Originally Posted by r1formetoo View Post
    If you'll click on the login link you'll notice that one email input length is 223 and the other is 183px. I've ran a search in the developers toolkit trying to find this 183 px specification so I can change it but so far no luck. Has anyone attempted to make the two match before?

    Ian
    redlinestands.com/catalog
    Rl,
    Look here please:
    includes/templates/template_default/templates/tpl_login_default.php

    Remember: place here in the override file then edit
    Mark
    Hare Do

  3. #3
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Confirm email address length needs changing

    Quote Originally Posted by haredo View Post
    Rl,
    Look here please:
    includes/templates/template_default/templates/tpl_login_default.php

    Remember: place here in the override file then edit
    I must not be understanding you. I looked all through that file and found nothing that would allow me to change the input length.

    Ian

  4. #4
    Join Date
    Apr 2006
    Location
    Ohio
    Posts
    6,162
    Plugin Contributions
    0

    Default Re: Confirm email address length needs changing

    Quote Originally Posted by r1formetoo View Post
    I must not be understanding you. I looked all through that file and found nothing that would allow me to change the input length.

    Ian
    R1,
    Post me with the brackets around the file [PHP] and use the [/PHP

    1. can't use the ] at the end or will mess up
    2. tpl_login_default.php
    Mark
    Hare Do

  5. #5
    Join Date
    Sep 2008
    Posts
    431
    Plugin Contributions
    0

    Default Re: Confirm email address length needs changing

    Quote Originally Posted by haredo View Post
    Rl,
    Look here please:
    includes/templates/template_default/templates/tpl_login_default.php

    Remember: place here in the override file then edit
    Quote Originally Posted by haredo View Post
    R1,
    Post me with the brackets around the file [PHP] and use the [/PHP

    1. can't use the ] at the end or will mess up
    2. tpl_login_default.php
    <?php
    /**
    * Page Template
    *
    * @package templateSystem
    * @copyright Copyright 2003-2007 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: tpl_login_default.php 5926 2007-02-28 18:15:39Z drbyte $
    */
    ?>
    <div class="centerColumn" id="loginDefault">

    <h1 id="loginDefaultHeading"><?php echo HEADING_TITLE; ?></h1>

    <?php if ($messageStack->size('login') > 0) echo $messageStack->output('login'); ?>


    <?php if ( USE_SPLIT_LOGIN_MODE == 'True' || $ec_button_enabled) { ?>
    <!--BOF PPEC split login- DO NOT REMOVE-->
    <fieldset class="floatingBox back">
    <legend><?php echo HEADING_NEW_CUSTOMER_SPLIT; ?></legend>
    <?php // ** BEGIN PAYPAL EXPRESS CHECKOUT ** ?>
    <?php if ($ec_button_enabled) { ?>
    <div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION_SPLIT; ?></div>

    <div class="center"><?php require(DIR_FS_CATALOG . DIR_WS_MODULES . 'payment/paypal/tpl_ec_button.php'); ?></div>
    <hr />
    <?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_DIVIDER; ?>
    <?php } ?>
    <?php // ** END PAYPAL EXPRESS CHECKOUT ** ?>
    <div class="information"><?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_SPLIT; ?></div>

    <?php echo zen_draw_form('create', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL')); ?>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CREATE_ACCOUNT, BUTTON_CREATE_ACCOUNT_ALT); ?></div>
    </form>
    </fieldset>

    <fieldset class="floatingBox forward">
    <legend><?php echo HEADING_RETURNING_CUSTOMER_SPLIT; ?></legend>
    <div class="information"><?php echo TEXT_RETURNING_CUSTOMER_SPLIT; ?></div>

    <?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL')); ?>
    <label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
    <?php echo zen_draw_input_field('email_address', '', 'size="18" id="login-email-address"'); ?>
    <br class="clearBoth" />

    <label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>
    <?php echo zen_draw_password_field('password', '', 'size="18" id="login-password"'); ?>
    <?php echo zen_draw_hidden_field('securityToken', $_SESSION['securityToken']); ?>
    <br class="clearBoth" />

    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>
    <div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
    </form>
    </fieldset>
    <br class="clearBoth" />
    <!--EOF PPEC split login- DO NOT REMOVE-->
    <?php } else { ?>
    <!--BOF normal login-->
    <?php
    if ($_SESSION['cart']->count_contents() > 0) {
    ?>
    <div class="advisory"><?php echo TEXT_VISITORS_CART; ?></div>
    <?php
    }
    ?>
    <?php echo zen_draw_form('login', zen_href_link(FILENAME_LOGIN, 'action=process', 'SSL')); ?>
    <fieldset>
    <legend><?php echo HEADING_RETURNING_CUSTOMER; ?></legend>

    <label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS; ?></label>
    <?php echo zen_draw_input_field('email_address', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_email_address', '40') . ' id="login-email-address"'); ?>
    <br class="clearBoth" />

    <label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD; ?></label>
    <?php echo zen_draw_password_field('password', '', zen_set_field_length(TABLE_CUSTOMERS, 'customers_password') . ' id="login-password"'); ?>
    <br class="clearBoth" />
    <?php echo zen_draw_hidden_field('securityToken', $_SESSION['securityToken']); ?>
    </fieldset>

    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_LOGIN, BUTTON_LOGIN_ALT); ?></div>
    <div class="buttonRow back important"><?php echo '<a href="' . zen_href_link(FILENAME_PASSWORD_FORGOTTEN, '', 'SSL') . '">' . TEXT_PASSWORD_FORGOTTEN . '</a>'; ?></div>
    </form>
    <br class="clearBoth" />

    <?php echo zen_draw_form('create_account', zen_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onsubmit="return check_form(create_account);"') . zen_draw_hidden_field('action', 'process') . zen_draw_hidden_field('email_pref_html', 'email_format'); ?>
    <fieldset>
    <legend><?php echo HEADING_NEW_CUSTOMER; ?></legend>

    <div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION; ?></div>

    <?php require($template->get_template_dir('tpl_modules_create_account.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_create_account.php'); ?>

    </fieldset>

    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_SUBMIT, BUTTON_SUBMIT_ALT); ?></div>
    </form>
    <!--EOF normal login-->
    <?php } ?>
    </div>

  6. #6
    Join Date
    Apr 2006
    Location
    Ohio
    Posts
    6,162
    Plugin Contributions
    0

    Default Re: Confirm email address length needs changing

    Rl,
    PHP Code:
    <?php echo zen_draw_form('login'zen_href_link(FILENAME_LOGIN'action=process''SSL')); ?>
    <label class="inputLabel" for="login-email-address"><?php echo ENTRY_EMAIL_ADDRESS?></label>
    <?php echo zen_draw_input_field('email_address''''size="18" id="login-email-address"'); ?>
    <br class="clearBoth" />

    <label class="inputLabel" for="login-password"><?php echo ENTRY_PASSWORD?></label>
    <?php echo zen_draw_password_field('password''''size="18" id="login-password"'); ?>
    <?php 
    echo zen_draw_hidden_field('securityToken'$_SESSION['securityToken']); ?>
    <br class="clearBoth" />
    1. notice the size=18 in both
    2. is this file the same in your CUSTOM folder????
    3. need a link to the site please
    Mark
    Hare Do

 

 

Similar Threads

  1. Replies: 9
    Last Post: 15 Nov 2013, 04:23 PM
  2. Confirm Email Address Entry - Contact Us page
    By MeltDown in forum General Questions
    Replies: 6
    Last Post: 6 Dec 2010, 12:16 AM
  3. Displaying user's email address on confirm page
    By dsided in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 21 Sep 2008, 11:07 PM
  4. AutomaticLogin with Confirm Email Address Entry Problem
    By timlo in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 13 Feb 2008, 05:51 AM
  5. How can I confirm admin email address.
    By bend2005 in forum Basic Configuration
    Replies: 1
    Last Post: 28 Dec 2006, 12:16 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR