Example #1
0
                                <fieldset>
                                    <legend><?php 
_e('City Area');
?>
</legend>
                                    <?php 
UserForm::city_area_text($user);
?>
                                </fieldset>
                                <fieldset>
                                    <legend><?php 
_e('Address');
?>
</legend>
                                    <?php 
UserForm::address_text($user);
?>
                                </fieldset>
                                <fieldset>
                                    <legend><?php 
_e('User type');
?>
</legend>
                                    <?php 
UserForm::is_company_select($user);
?>
                                </fieldset>
                            </div>
                            <div style="clear: both;"></div>
                            <input id="button_save" type="submit" value="<?php 
echo $btn_text;
Example #2
0
          </label>
          <div class="controls">
            <?php 
UserForm::city_area_text(osc_user());
?>
          </div>
        </div>
        <div class="form-group">
          <label class="control-label"l for="address">
            <?php 
_e('Address', OSCLASSWIZARDS_THEME_FOLDER);
?>
          </label>
          <div class="controls">
            <?php 
UserForm::address_text(osc_user());
?>
          </div>
        </div>
        <div class="form-group">
          <label class="control-label" for="webSite">
            <?php 
_e('Website', OSCLASSWIZARDS_THEME_FOLDER);
?>
          </label>
          <div class="controls">
            <?php 
UserForm::website_text(osc_user());
?>
          </div>
        </div>
Example #3
0
 <div class="form-row">
     <div class="form-label"><?php _e('City area'); ?></div>
     <div class="form-controls">
         <?php UserForm::city_area_text($user); ?>
     </div>
 </div>
 <div class="form-row">
     <div class="form-label"><?php _e('Zip code'); ?></div>
     <div class="form-controls">
         <?php UserForm::zip_text($user); ?>
     </div>
 </div>
 <div class="form-row">
     <div class="form-label"><?php _e('Address'); ?></div>
     <div class="form-controls">
         <?php UserForm::address_text($user); ?>
     </div>
 </div>
 <h3 class="render-title"><?php _e('Password'); ?></h3>
 <div class="form-row">
     <div class="form-label"><?php _e('New password'); ?><?php if(!$aux['edit']) { printf('<br/><em>%s</em>', __('(twice, required)')); } ?></div>
     <div class="form-controls">
         <?php UserForm::password_text($user); ?>
         <?php if($aux['edit']) { ?>
             <p class="help-inline"><?php _e("If you'd like to change the password, type a new one. Otherwise leave this blank"); ?></p>
         <?php } ?>
         <div class="input-separate-top">
             <?php UserForm::check_password_text($user); ?>
             <?php if($aux['edit']) { ?>
                 <p class="help-inline"><?php _e('Type your new password again'); ?></p>
             <?php } ?>