icingaweb2/modules/setup/application/views/scripts/index/parts/finish.phtml

26 lines
966 B
PHTML
Raw Normal View History

<div id="setup-finish">
2014-10-17 09:18:10 +02:00
<div class="report">
<?php $firstLine = true; ?>
2014-10-17 09:18:10 +02:00
<?php foreach ($report as $entry): ?>
<?php if ($entry): ?>
<?php if (false === $firstLine): ?>
<div class="line-separator"></div>
<?php endif ?>
<?= $entry; ?>
<?php $firstLine = false; ?>
<?php endif ?>
2014-10-17 09:18:10 +02:00
<?php endforeach ?>
<?php if ($success): ?>
<p class="success"><?= $this->translate('Congratulations! Icinga Web 2 has been successfully set up.'); ?></p>
2014-10-17 09:18:10 +02:00
<?php else: ?>
<p class="failure"><?= $this->translate('Sorry! Failed to set up Icinga Web 2 successfully.'); ?></p>
2014-10-17 09:18:10 +02:00
<?php endif ?>
</div>
<div class="buttons">
<?php if ($success): ?>
<a href="<?= $this->href('authentication/login'); ?>" class="button-like login"><?= $this->translate('Login to Icinga Web 2'); ?></a>
2014-10-17 09:18:10 +02:00
<?php else: ?>
<a href="<?= $this->href(); ?>" class="button-like"><?= $this->translate('Back'); ?></a>
2014-10-17 09:18:10 +02:00
<?php endif ?>
</div>
</div>