| Current Path : /var/www/html/quest5/backend/views/site/ |
| Current File : /var/www/html/quest5/backend/views/site/resetPassword.php |
<?php
/* @var $this yii\web\View */
/* @var $form yii\bootstrap\ActiveForm */
/* @var $model \frontend\models\ResetPasswordForm */
use yii\helpers\Html;
use yii\bootstrap\ActiveForm;
$this->title = 'Set Semula Kata Laluan';
$this->params['breadcrumbs'][] = $this->title;
$fieldOptions = [
'options' => ['class' => 'form-group has-feedback'],
'inputTemplate' => "{input}<span class='glyphicon glyphicon-lock form-control-feedback'></span>"
];
?>
<div class="login-box" id="login-box">
<div class="middle-box text-center loginscreen animated fadeInDown" style="padding-bottom: 1em;">
<div>
<div>
<img src="images/jabatan_perangkaan.png" height="200" margin-top: 30px>
<h2 style="color:#000000;font-weight:bold;">SET SEMULA KATA LALUAN </h2>
</div>
</div>
</div>
<div class="container" style="border-radius: 25px; max-width: 700px; padding-bottom: 3em; background-color: #adadad">
<div class="middle-box text-center loginscreen animated fadeInDown" style="padding-bottom: 2em;">
<div class="site-reset-password">
<h3 style="color:#bf4c4c;font-weight:bold;">Sila masukkan kata laluan yang baru</h3>
<?php $form = ActiveForm::begin(['id' => 'reset-password-form']); ?>
<?php
echo $form->field($model, 'password', $fieldOptions)
->passwordInput(['placeholder' => 'Kata Laluan Baru'])
->label(false);
?>
<div class="form-group">
<?= Html::submitButton("<i class=\"glyphicon glyphicon-floppy-save\"></i> ".Yii::t('app','Simpan'), ['class' => 'btn btn-primary']) ?>
</div>
<?php ActiveForm::end(); ?>
</div>
</div>
</div>
</div>