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

domains.php « templates - github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08cb3dd4875114f8ebd482076383bca40bfd4b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
\OCP\Util::addStyle('registration', 'style');
?>
<ul class="error-wide">
	<li class='error'><?php p($l->t('Registration is only allowed for the following domains:')); ?>
	<?php
	foreach ($_['domains'] as $domain ){
		echo "<p class='hint'>";
		p($domain);
		echo "</p>";
	}
	?>
	</li>
</ul>