mirror of
https://github.com/Icinga/icingaweb2-module-businessprocess.git
synced 2025-12-28 01:59:34 -05:00
12 lines
376 B
PHTML
12 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>
|