|
|
@@ -6,14 +6,12 @@ use yii\bootstrap\ActiveForm; |
|
|
|
/* @var $form yii\bootstrap\ActiveForm */ |
|
|
|
/* @var $model \common\models\LoginForm */ |
|
|
|
|
|
|
|
$this->title = 'Login'; |
|
|
|
$this->title = 'Connexion'; |
|
|
|
$this->params['breadcrumbs'][] = $this->title; |
|
|
|
?> |
|
|
|
<div class="site-login"> |
|
|
|
<h1><?= Html::encode($this->title) ?></h1> |
|
|
|
|
|
|
|
<p>Please fill out the following fields to login:</p> |
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
<div class="col-lg-5"> |
|
|
|
<?php $form = ActiveForm::begin(['id' => 'login-form']); ?> |
|
|
@@ -21,7 +19,7 @@ $this->params['breadcrumbs'][] = $this->title; |
|
|
|
<?= $form->field($model, 'password')->passwordInput() ?> |
|
|
|
<?= $form->field($model, 'rememberMe')->checkbox() ?> |
|
|
|
<div class="form-group"> |
|
|
|
<?= Html::submitButton('Login', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?> |
|
|
|
<?= Html::submitButton('Connexion', ['class' => 'btn btn-primary', 'name' => 'login-button']) ?> |
|
|
|
</div> |
|
|
|
<?php ActiveForm::end(); ?> |
|
|
|
</div> |