Development

Changeset 6335

You must first sign up to be able to contribute.

Changeset 6335

Show
Ignore:
Timestamp:
12/06/07 11:11:13 (1 year ago)
Author:
gordon
Message:

[sfGuardDoctrinePlugin] correct labels

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfGuardDoctrinePlugin/branches/symfony-1.0/modules/sfGuardRegister/templates/_form.php

    r4927 r6335  
    88      <div class="form-row" id="sf_guard_register_username"> 
    99        <?php echo form_error('user[username]') ?> 
    10         <label for="username"><?php echo __('username'); ?>:</label> 
     10        <label for="user_username"><?php echo __('username'); ?>:</label> 
    1111        <?php echo input_tag('user[username]', $sf_data->get('sf_params')->get('user[username]')) ?> 
    1212      </div> 
     
    1414      <div class="form-row" id="sf_guard_register_email_address"> 
    1515        <?php echo form_error('user[email_address]') ?> 
    16         <label for="username"><?php echo __('email address'); ?>:</label> 
     16        <label for="user_email_address"><?php echo __('email address'); ?>:</label> 
    1717        <?php echo input_tag('user[email_address]', $sf_data->get('sf_params')->get('user[email_address]')) ?> 
    1818      </div> 
     
    2020      <div class="form-row" id="sf_guard_register_password"> 
    2121        <?php echo form_error('user[password]') ?> 
    22         <label for="password"><?php echo __('password'); ?>:</label> 
     22        <label for="user_password"><?php echo __('password'); ?>:</label> 
    2323        <?php echo input_password_tag('user[password]', $sf_data->get('sf_params')->get('user[password]')) ?> 
    2424      </div> 
     
    2626      <div class="form-row" id="sf_guard_register_password_confirmation"> 
    2727        <?php echo form_error('user[password_confirmation]') ?> 
    28         <label for="password_confirmation"><?php echo __('password confirmation'); ?>:</label> 
     28        <label for="user_password_confirmation"><?php echo __('password confirmation'); ?>:</label> 
    2929        <?php echo input_password_tag('user[password_confirmation]', $sf_data->get('sf_params')->get('user[password_confirmation]')) ?> 
    3030      </div>