You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
745 B
35 lines
745 B
7 years ago
|
<?php
|
||
|
|
||
|
use yii\helpers\Html;
|
||
|
|
||
|
/* @var $this yii\web\View */
|
||
|
/* @var $name string */
|
||
|
/* @var $message string */
|
||
|
/* @var $exception Exception */
|
||
|
|
||
|
$this->title = $name;
|
||
|
?>
|
||
|
<section class="content">
|
||
|
|
||
|
<div class="error-page">
|
||
|
<h2 class="headline text-info"><i class="fa fa-warning text-yellow"></i></h2>
|
||
|
|
||
|
<div class="error-content">
|
||
|
<h3><?= $name ?></h3>
|
||
|
|
||
|
<p>
|
||
|
<?= nl2br(Html::encode($message)) ?>
|
||
|
</p>
|
||
|
|
||
|
<p>
|
||
|
<?= Yii::t('main', 'Return to back or login page please.') ?>
|
||
|
</p>
|
||
|
<p>
|
||
|
<?= Html::a(Yii::t('main', 'Sign out'), ['/auth/logout'], ['data-method' => 'POST']) ?>
|
||
|
</p>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</section>
|