Merge pull request #221 from nextcloud/bugfix/noid/better-example-urls
Fix checkbox style in admin settings
This commit is contained in:
commit
312c9db9b1
|
|
@ -20,14 +20,13 @@ foreach ($_['groups'] as $group) {
|
||||||
<input type="text" id="allowed_domains" name="allowed_domains" value=<?php p($_['allowed']);?>>
|
<input type="text" id="allowed_domains" name="allowed_domains" value=<?php p($_['allowed']);?>>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<em><?php p($l->t('Enter a semicolon-separated list of allowed domains. Example: owncloud.com;github.com'));?></em>
|
<em><?php p($l->t('Enter a semicolon-separated list of allowed domains. Example: nextcloud.com;example.com'));?></em>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<div style="margin-top: 10px;">
|
||||||
<label for="admin_approval_required"><?php p($l->t('Require admin approval?')); ?>
|
<input type="checkbox" id="admin_approval_required" class="checkbox" name="admin_approval_required" <?php if ($_['approval_required'] === "yes") {
|
||||||
<input type="checkbox" id="admin_approval_required" name="admin_approval_required" <?php if ($_['approval_required'] === "yes") {
|
|
||||||
echo " checked";
|
echo " checked";
|
||||||
} ?>>
|
} ?>>
|
||||||
</label>
|
<label for="admin_approval_required"><?php p($l->t('Require admin approval?')); ?></label>
|
||||||
</p>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue