Changeset 6335
- Timestamp:
- 12/06/07 11:11:13 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfGuardDoctrinePlugin/branches/symfony-1.0/modules/sfGuardRegister/templates/_form.php
r4927 r6335 8 8 <div class="form-row" id="sf_guard_register_username"> 9 9 <?php echo form_error('user[username]') ?> 10 <label for="user name"><?php echo __('username'); ?>:</label>10 <label for="user_username"><?php echo __('username'); ?>:</label> 11 11 <?php echo input_tag('user[username]', $sf_data->get('sf_params')->get('user[username]')) ?> 12 12 </div> … … 14 14 <div class="form-row" id="sf_guard_register_email_address"> 15 15 <?php echo form_error('user[email_address]') ?> 16 <label for="user name"><?php echo __('email address'); ?>:</label>16 <label for="user_email_address"><?php echo __('email address'); ?>:</label> 17 17 <?php echo input_tag('user[email_address]', $sf_data->get('sf_params')->get('user[email_address]')) ?> 18 18 </div> … … 20 20 <div class="form-row" id="sf_guard_register_password"> 21 21 <?php echo form_error('user[password]') ?> 22 <label for=" password"><?php echo __('password'); ?>:</label>22 <label for="user_password"><?php echo __('password'); ?>:</label> 23 23 <?php echo input_password_tag('user[password]', $sf_data->get('sf_params')->get('user[password]')) ?> 24 24 </div> … … 26 26 <div class="form-row" id="sf_guard_register_password_confirmation"> 27 27 <?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> 29 29 <?php echo input_password_tag('user[password_confirmation]', $sf_data->get('sf_params')->get('user[password_confirmation]')) ?> 30 30 </div>