2024-05-27 04:08:53 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2011-2015 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
?>
|
2022-07-18 11:58:05 -04:00
|
|
|
<div class="guest-box">
|
2017-05-17 09:35:10 -04:00
|
|
|
<h2><?php p($l->t('Error')) ?></h2>
|
|
|
|
|
<ul>
|
2024-08-23 09:10:27 -04:00
|
|
|
<?php foreach ($_['errors'] as $error):?>
|
2017-05-17 09:35:10 -04:00
|
|
|
<li>
|
|
|
|
|
<p><?php p($error['error']) ?></p>
|
2020-04-10 08:19:56 -04:00
|
|
|
<?php if (isset($error['hint']) && $error['hint']): ?>
|
2017-03-28 18:42:22 -04:00
|
|
|
<p class='hint'><?php p($error['hint']) ?></p>
|
2014-09-11 08:14:02 -04:00
|
|
|
<?php endif;?>
|
2011-08-08 13:50:36 -04:00
|
|
|
</li>
|
|
|
|
|
<?php endforeach ?>
|
2017-05-17 09:35:10 -04:00
|
|
|
</ul>
|
|
|
|
|
</div>
|