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

message.php « templates - github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1343300f32ab5a69c99134dad544f13ff9e821c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php if ( $_['errors'] ) {
	echo '<ul class="error">';
	foreach ( $_['errors'] as $error ) { ?>
		<li><?php echo $error; ?></li>
	<?php }
	echo '</ul>';
}
if ( $_['messages'] ) {
	echo '<ul class="success">';
	foreach ($_['messages'] as $message ) {?>
		<li><?php echo $message; ?></li>
<?php	}
	echo '</ul>';
}?>