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

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-10-05 14:26:41 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-10-05 14:26:41 +0400
commit50d98af8eb3ad463e0fbefb174f81d58c03be623 (patch)
treeaaf8296d252ac0fd4e6d80a50ad3f29ef5577a43 /django_auth
parentd0fe12e7bb9819f04315668465e7ed1fcd6ae1a7 (diff)
more elegant style for Personal and Admin settings, also in apps repo
Diffstat (limited to 'django_auth')
-rw-r--r--django_auth/templates/settings.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/django_auth/templates/settings.php b/django_auth/templates/settings.php
index 48f80aa50..cacbba477 100644
--- a/django_auth/templates/settings.php
+++ b/django_auth/templates/settings.php
@@ -1,6 +1,6 @@
<form id="django_auth" action="#" method="post">
<fieldset class="personalblock">
- <legend><strong>Django Authentification Backend</strong></legend>
+ <h2>Django Authentification Backend</h2>
<p>
<input type="checkbox" name="staff_is_admin" id="staff_is_admin" <?php if ($_['staff_is_admin'] == true) { print_unescaped('checked="checked"');} ?>/><label for="staff_is_admin" ><?php p($l->t('Django Staffusers get administration privileges'));?></label><br/>
<input type="checkbox" name="superuser_is_admin" id="superuser_is_admin" <?php if ($_['superuser_is_admin'] == true) { print_unescaped('checked="checked"');} ?>/><label for="superuser_is_admin"><?php p($l->t('Django Superusers get administration privileges'));?></label>