yii2-netdisk/views/site/login.php

47 lines
1.4 KiB
PHP
Raw Normal View History

2013-05-24 22:14:49 +08:00
<?php
use yii\helpers\Html;
use yii\widgets\ActiveForm;
/**
* @var yii\base\View $this
* @var yii\widgets\ActiveForm $form
* @var app\models\LoginForm $model
*/
$this->title = 'Login';
$this->params['breadcrumbs'][] = $this->title;
?>
2013-08-10 19:33:24 +08:00
<div class="site-login">
<h1><?php echo Html::encode($this->title); ?></h1>
2013-05-24 22:14:49 +08:00
2013-08-10 19:33:24 +08:00
<p>Please fill out the following fields to login:</p>
2013-05-24 22:14:49 +08:00
2013-09-08 21:58:28 +08:00
<?php $form = ActiveForm::begin(array(
'id' => 'login-form',
'options' => array('class' => 'form-horizontal'),
'fieldConfig' => array(
'template' => "<div class=\"col-lg-1\">{label}</div>\n<div class=\"col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
),
)); ?>
<?php echo $form->field($model, 'username'); ?>
<?php echo $form->field($model, 'password')->passwordInput(); ?>
<?php echo $form->field($model, 'rememberMe', array(
'template' => "<div class=\"col-lg-offset-1 col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
))->checkbox(); ?>
<div class="form-group">
<div class="col-lg-offset-1 col-lg-11">
<?php echo Html::submitButton('Login', array('class' => 'btn btn-primary')); ?>
</div>
2013-08-13 01:29:37 +08:00
</div>
2013-09-08 21:58:28 +08:00
<?php ActiveForm::end(); ?>
<div class="col-lg-offset-1" style="color:#999;">
You may login with <strong>admin/admin</strong> or <strong>demo/demo</strong>.<br>
To modify the username/password, please check out the code <code>app\models\User::$users</code>.
2013-05-24 22:14:49 +08:00
</div>
2013-08-09 08:00:48 +08:00
</div>