-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_users.html
43 lines (39 loc) · 1.1 KB
/
admin_users.html
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
<h2 class="mt-5">Kids</h2>
<form class="admin_users">
<div class="mb-3">
<div id="download_users" class="download">
<i class="fa fa-download text-success mr-2"></i> Download all</div>
</div>
<div class="form-group">
<select class="form-control" id="names">
<option>Pick someone...</option>
</select>
</div>
</form>
<table class="table show_user col-4 d-none">
<thead>
<tr>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Parent name</th>
<th scope="col">Parent email</th>
<th scope="col">Parent phone</th>
<th scope="col">Login link</th>
<th scope="col">Edit user</th>
</tr>
</thead>
<tbody>
<tr>
<td class="first_name"></td>
<td class="last_name"></td>
<td class="parent_name"></td>
<td class="parent_email"></td>
<td class="parent_phone"></td>
<td class="login_link"></td>
<td class="edit_link"></td>
</tr>
</tbody>
</table>
<form id="delete_user" class="show_user d-none">
<button class="btn post btn-outline-primary disabled">Delete</button>
</form>