mirror of
https://github.com/nextcloud/server.git
synced 2025-05-01 20:40:30 +00:00

- Use white box and put content on it - Improve focus indicator Signed-off-by: Carl Schwan <carl@carlschwan.eu>
13 lines
325 B
PHP
13 lines
325 B
PHP
<div class="guest-box">
|
|
<h2><?php p($l->t('Error')) ?></h2>
|
|
<ul>
|
|
<?php foreach ($_["errors"] as $error):?>
|
|
<li>
|
|
<p><?php p($error['error']) ?></p>
|
|
<?php if (isset($error['hint']) && $error['hint']): ?>
|
|
<p class='hint'><?php p($error['hint']) ?></p>
|
|
<?php endif;?>
|
|
</li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
</div>
|