Advertisement
Guest User

login-mw

a guest
May 26th, 2015
346
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.55 KB | None | 0 0
  1. <div class="here asking me the email">
  2. <?php echo $form->textField($model, 'email', $model->getHtmlOptions('email')); ?>
  3. <?php echo $form->error($model, 'email');?>
  4. </div>
  5. <div class="here asking me the password">
  6. <?php echo $form->passwordField($model, 'password', $model->getHtmlOptions('password')), ; ?>
  7. <?php echo $form->error($model, 'password');?>
  8. </div>
  9. <div class="the buttom for send">
  10. <button type="submit" class="" data-loading-text="<?php echo Yii::t('app', 'Please wait, processing...');?>"><?php echo Yii::t('app', 'Login');?></button>
  11. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement