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

github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'templates/domains.php')
-rw-r--r--templates/domains.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/domains.php b/templates/domains.php
new file mode 100644
index 0000000..4c73dba
--- /dev/null
+++ b/templates/domains.php
@@ -0,0 +1,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>