-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage_users.php
61 lines (58 loc) · 2.49 KB
/
manage_users.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<header><?php include "select_navbar.php" ?></header>
<div class="card d-flex">
<a id="link_open_modal_add_user" class="clickable_link d-flex p-2"><i class="material-icons">add_circle</i><div class="ml-2">Add New User</div></a>
<table class="table">
<tr>
<th>ID</th>
<th>Email</th>
<th>Username</th>
<th># of Ads</th>
<th>Action</th>
</tr>
<tbody id="table_users">
</tbody>
</table>
<div id="modal_add_user" class="modal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Add New User</h5>
<button id="button_close_modal_add_user" type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="form-group">
<label>Email</label>
<input id="input_email" type="email" class="form-control"/>
</div>
<div class="form-group">
<label>Username</label>
<input id="input_username" type="text" class="form-control"/>
</div>
<div class="form-group">
<label>Password</label>
<input id="input_password" type="password" class="form-control"/>
</div>
<div class="form-group">
<label>Confirm Password</label>
<input id="input_confirm_password" type="password" class="form-control"/>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button id="button_submit_modal_add_user" type="button" class="btn btn-primary">Submit</button>
</div>
</div>
</div>
</div>
</div>
</body>
<script src="./src/manage_users.js"></script>
</html>
</html>