-
Notifications
You must be signed in to change notification settings - Fork 1
/
users.html
55 lines (45 loc) · 1.68 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="./css/forms.css">
<link rel = "stylesheet" type = "text/css" href = "./css/navbar.css" />
<link rel = "stylesheet" type = "text/css" href = "./css/table.css" />
</head>
<body id="main">
<div id="topnav" class="topnav"></div>
<form class="users_form">
<div id="users_container" class="container">
<h1>Users</h1>
<hr>
<input name = "email" id = "newEmail" placeholder = "email"/><br/>
<input name = "password" id = "newPass" placeholder = "password"/><br/>
<select id = "newRole">
<option value="SCOUTER">SCOUTER</option>
<option value="LEAD">LEAD</option>
<option value="REP">REPRESENTATIVE</option>
<option value="COACH">COACH</option>
</select>
<br/>
<button name="add user" type="button" onclick="addUser()">Add</button>
<div class="table-wrapper">
<table class="fl-table">
<thead>
<tr>
<th>Email</th>
<th>Password</th>
<th>Role</th>
<th>Delete</th>
</tr>
</thead>
<tbody id = "usertable">
</tbody>
</table>
</div>
</div>
</form>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="js/users_script.js"></script>
<script src="js/nav_bar.js"></script>
</body>
</html>