|
|
|
@ -1,5 +1,7 @@
|
|
|
|
|
<?php |
|
|
|
|
use yii\helpers\Html; |
|
|
|
|
use yii\widgets\ActiveForm; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* @var yii\base\View $this |
|
|
|
|
* @var yii\widgets\ActiveForm $form |
|
|
|
@ -12,7 +14,7 @@ $this->params['breadcrumbs'][] = $this->title;
|
|
|
|
|
|
|
|
|
|
<p>Please fill out the following fields to login:</p> |
|
|
|
|
|
|
|
|
|
<?php $form = $this->beginWidget('yii\widgets\ActiveForm', array('options' => array('class' => 'form-horizontal'))); ?> |
|
|
|
|
<?php $form = $this->beginWidget(ActiveForm::className(), array('options' => array('class' => 'form-horizontal'))); ?> |
|
|
|
|
<?php echo $form->field($model, 'username')->textInput(); ?> |
|
|
|
|
<?php echo $form->field($model, 'password')->passwordInput(); ?> |
|
|
|
|
<?php echo $form->field($model, 'rememberMe')->checkbox(); ?> |
|
|
|
|