<?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>