mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-02-26 22:31:21 +01:00
17 lines
285 B
PHP
17 lines
285 B
PHP
<?php
|
|
|
|
/* @var $this yii\web\View */
|
|
/* @var $name string */
|
|
/* @var $message string */
|
|
/* @var $exception Exception */
|
|
|
|
use yii\helpers\Html;
|
|
|
|
$this->title = $name;
|
|
$this->params['in-card'] = false;
|
|
?>
|
|
|
|
<div class="alert alert-danger">
|
|
<?= nl2br(Html::encode($message)) ?>
|
|
</div>
|