Update add_user.php

This commit is contained in:
jakani24
2024-01-20 09:53:18 +01:00
parent 446fd9a716
commit 1702cb4b5d

View File

@@ -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>