示例#1
0
/* @var $this yii\web\View */
/* @var $form yii\bootstrap\ActiveForm */
/* @var $model \common\models\LoginForm */
use yii\bootstrap\ActiveForm;
use source\LsYii;
use source\helpers\Html;
use yii\bootstrap\Widget;
use source\core\back\BackView;
use source\libs\Resource;
$this->title = 'Login';
$this->params['breadcrumbs'][] = $this->title;
$this->registerJs("\$(function(){\n    \$('#captchaImg').click();\n})", BackView::POS_END);
?>
<style type="text/css">
    .wrapper {background: url(<?php 
echo Resource::getAdminLoginBackground();
?>
) no-repeat center center;}
    .wrapper .admin-title {text-align: center;font-weight: bolder;font-size: 30px;color: white;}
</style>
<div class="wrapper">
    <div class="wrapper-box">
        <div class="admin-title">
            <?php 
echo LsYii::gT(LsYii::getName() . "后台管理");
?>
        </div>
        <div class="admin-form">
            <?php 
$form = ActiveForm::begin(['id' => 'login-form']);
?>