Update add_user.php
This commit is contained in:
@@ -50,28 +50,29 @@ if($perms[0]!=="1"){
|
|||||||
<label for="password">Password:</label>
|
<label for="password">Password:</label>
|
||||||
<input type="password" class="form-control" id="password" name="password" required>
|
<input type="password" class="form-control" id="password" name="password" required>
|
||||||
</div>
|
</div>
|
||||||
<table class="table">
|
<label for="perms_table">Permissions:</label>
|
||||||
<thead>
|
<table class="table" id="perms_table" name="perms_table">
|
||||||
<tr>
|
<thead>
|
||||||
<th scope="col">#</th>
|
<tr>
|
||||||
<th scope="col">Item</th>
|
<th scope="col">#</th>
|
||||||
<th scope="col">Checkbox</th>
|
<th scope="col">Item</th>
|
||||||
</tr>
|
<th scope="col">Checkbox</th>
|
||||||
</thead>
|
</tr>
|
||||||
<tbody>
|
</thead>
|
||||||
<tr>
|
<tbody>
|
||||||
<th scope="row">1</th>
|
<tr>
|
||||||
<td>Item 1</td>
|
<th scope="row">1</th>
|
||||||
<td><input type="checkbox" name="item1"></td>
|
<td>Item 1</td>
|
||||||
</tr>
|
<td><input type="checkbox" name="item1"></td>
|
||||||
<tr>
|
</tr>
|
||||||
<th scope="row">2</th>
|
<tr>
|
||||||
<td>Item 2</td>
|
<th scope="row">2</th>
|
||||||
<td><input type="checkbox" name="item2"></td>
|
<td>Item 2</td>
|
||||||
</tr>
|
<td><input type="checkbox" name="item2"></td>
|
||||||
<!-- Add more rows as needed -->
|
</tr>
|
||||||
</tbody>
|
<!-- Add more rows as needed -->
|
||||||
</table>
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
<button type="submit" class="btn btn-primary btn-block">Add user</button>
|
<button type="submit" class="btn btn-primary btn-block">Add user</button>
|
||||||
</form>
|
</form>
|
||||||
|
|||||||
Reference in New Issue
Block a user