Welcome to mirror list, hosted at ThFree Co, Russian Federation.

error.php « templates « core - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e5488ae8dbcacd0adecfd74a5b4429eacf8188d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<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>