Files
SmartHomePHP/views/error/guest-error.php
Alex Solomaha e56bb465b7 Login done
2017-02-24 20:26:14 +02:00

26 lines
498 B
PHP

<?php
/* @var $this yii\web\View */
/* @var $name string */
/* @var $message string */
/* @var $exception Exception */
use yii\helpers\Html;
$this->title = $name;
?>
<div class="container">
<div class="error-page-logo">
<a href="<?= \yii\helpers\Url::home() ?>" class="product-font">
<span>Solomaha</span> Home
</a>
</div>
<h1><?= $this->title ?></h1>
<div class="alert alert-danger">
<?= nl2br(Html::encode($message)) ?>
</div>
</div>