mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2026-02-01 07:59:26 -05:00
13 lines
376 B
PHTML
13 lines
376 B
PHTML
|
|
<?php
|
||
|
|
/** @var \Icinga\Web\View $this */
|
||
|
|
/** @var \Icinga\Web\Widget\Tabs $tabs */
|
||
|
|
/** @var string $host */
|
||
|
|
?>
|
||
|
|
<div class="controls">
|
||
|
|
<?= $tabs->showOnlyCloseButton() ?>
|
||
|
|
</div>
|
||
|
|
<div class="content">
|
||
|
|
<h1><?= $this->escape($this->translate('Access denied')) ?></h1>
|
||
|
|
<p><?php printf($this->escape($this->translate('Access to host "%s" denied')), $host) ?></p>
|
||
|
|
</div>
|