Fix checkbox styling
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
e229a5a345
commit
da39525e0d
|
|
@ -23,11 +23,10 @@ foreach ($_['groups'] as $group) {
|
||||||
<em><?php p($l->t('Enter a semicolon-separated list of allowed domains. Example: nextcloud.com;example.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