Blame view

backend/themes/defaults/layouts/nologin.php 912 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  <?php
  
  use backend\themes\defaults\assets\AppAsset;
  
  /**
   * @author FilamentV <vortex.filament@gmail.com>
   * @copyright (c), Thread
   */
  $bundle = AppAsset::register($this);
  
  $this->beginPage()
  ?>
      <!DOCTYPE html>
      <html lang="<?= Yii::$app->language ?>">
      <head>
          <base href="<?= Yii::$app->getUrlManager()->getBaseUrl() ?>">
          <meta charset="<?= Yii::$app->charset ?>"/>
          <link rel="shortcut icon" type="image/png" href="shortfavicon.png"/>
          <link rel="icon" type="image/png" href="favicon.png">
          <meta name="viewport" content="width=device-width, initial-scale=1">
          <?php $this->head(); ?>
      </head>
      <body class="gray-bg">
      <?php $this->beginBody() ?>
  
      <div class="middle-box text-center loginscreen animated fadeInDown">
          <div><?= $content ?></div>
      </div>
      <?php $this->endBody() ?>
      </body>
      </html>
  <?php $this->endPage() ?>