2017-12-04 12:05:07 -05:00
|
|
|
<?php
|
|
|
|
|
/** @var \Icinga\Web\View $this */
|
|
|
|
|
/** @var \Icinga\Web\Widget\Tabs $tabs */
|
|
|
|
|
/** @var string $host */
|
|
|
|
|
?>
|
2026-01-07 08:54:35 -05:00
|
|
|
<?php if ($tabs): ?>
|
2017-12-04 12:05:07 -05:00
|
|
|
<div class="controls">
|
|
|
|
|
<?= $tabs->showOnlyCloseButton() ?>
|
|
|
|
|
</div>
|
2026-01-07 08:54:35 -05:00
|
|
|
<?php endif ?>
|
2019-02-18 09:20:42 -05:00
|
|
|
<div class="content restricted">
|
|
|
|
|
<h1><?= $this->translate('Access Denied') ?></h1>
|
|
|
|
|
<p><?= sprintf($this->translate('You are lacking permission to access host "%s".'), $this->escape($host)) ?></p>
|
|
|
|
|
<a href="#" class="close-container-control action-link"><?= $this->icon('cancel') ?><?= $this->translate('Hide this message') ?></a>
|
2017-12-04 12:05:07 -05:00
|
|
|
</div>
|