Cleaned up the HTML for adding users

这个提交包含在:
Peter Goodhall 2020-09-16 21:00:16 +01:00
父节点 305f8d3eb6
当前提交 b5774a76b0

查看文件

@ -29,7 +29,6 @@
<label>User Role</label> <label>User Role</label>
<select class="custom-select" name="user_type"> <select class="custom-select" name="user_type">
<?php <?php
$levels = $this->config->item('auth_level'); $levels = $this->config->item('auth_level');
while (list($key, $val) = each($levels)) { while (list($key, $val) = each($levels)) {
?> ?>
@ -82,7 +81,6 @@
?> ?>
</div> </div>
<div class="form-group"> <div class="form-group">
<label for="SelectDateFormat">Date Format</label> <label for="SelectDateFormat">Date Format</label>
<select name="user_date_format" class="custom-select" id="SelectDateFormat" aria-describedby="SelectDateFormatHelp"> <select name="user_date_format" class="custom-select" id="SelectDateFormat" aria-describedby="SelectDateFormatHelp">
@ -93,6 +91,7 @@
<option value="d.m.Y"><?php echo date('d.m.Y'); ?></option> <option value="d.m.Y"><?php echo date('d.m.Y'); ?></option>
<option value="Y-m-d"><?php echo date('Y-m-d'); ?></option> <option value="Y-m-d"><?php echo date('Y-m-d'); ?></option>
</select> </select>
<small id="SelectDateFormatHelp" class="form-text text-muted">Select how you would like dates shown when logged into your account.</small> <small id="SelectDateFormatHelp" class="form-text text-muted">Select how you would like dates shown when logged into your account.</small>
</div> </div>