aboutsummaryrefslogtreecommitdiffstats
path: root/core/templates/error.php
blob: ac9bd34d5580706ce490584a851276bc9af1b535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/**
 * SPDX-FileCopyrightText: 2017-2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-FileCopyrightText: 2011-2015 ownCloud, Inc.
 * SPDX-License-Identifier: AGPL-3.0-only
 */
?>
<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>