create project
This commit is contained in:
40
frontend/views/layouts/main-login.php
Normal file
40
frontend/views/layouts/main-login.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
/* @var $this \yii\web\View */
|
||||
/* @var $content string */
|
||||
|
||||
use yii\helpers\Html;
|
||||
|
||||
\hail812\adminlte3\assets\AdminLteAsset::register($this);
|
||||
$this->registerCssFile('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700');
|
||||
$this->registerCssFile('https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css');
|
||||
\hail812\adminlte3\assets\PluginAsset::register($this)->add(['fontawesome', 'icheck-bootstrap']);
|
||||
?>
|
||||
<?php $this->beginPage() ?>
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="<?= Yii::$app->charset ?>">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<!-- Tell the browser to be responsive to screen width -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<?php $this->registerCsrfMetaTags() ?>
|
||||
<title><?= Html::encode($this->title) ?></title>
|
||||
<?php $this->head() ?>
|
||||
</head>
|
||||
<body class="hold-transition login-page">
|
||||
<?php $this->beginBody() ?>
|
||||
<div class="login-box">
|
||||
<div class="login-logo">
|
||||
<b>Генератор чеков</b>
|
||||
</div>
|
||||
<!-- /.login-logo -->
|
||||
|
||||
<?= $content ?>
|
||||
</div>
|
||||
<!-- /.login-box -->
|
||||
|
||||
<?php $this->endBody() ?>
|
||||
</body>
|
||||
</html>
|
||||
<?php $this->endPage() ?>
|
Reference in New Issue
Block a user