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: 4c73dba67afbb528fa1a2f4309907a7428eeda47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
\OCP\Util::addStyle('registration', 'style');
?>
<ul class="error-wide">
	<li class='error'><?php p($l->t('Registration is only allowed for following domains:')); ?>
<?php 
foreach ($_['domains'] as $domain ){
	echo "<p class='hint'>";
	p($domain);
	echo "</p>";
}

?>
</li>
</ul>