-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin_detail.html
109 lines (104 loc) · 4.01 KB
/
admin_detail.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<br>
<div class="container">
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-md-1">
<img src="images/logo.png" alt="">
</div>
<div class="col-md-11">
<h4>State of Hawaii</h4>
<h2 class="blue"><strong>Office of Elections</strong></h2>
</div>
</div>
</div>
</div>
<br>
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<a href="admin.html" class="btn btn-primary">Back to list</a>
</div>
</div>
</div>
<br>
<div class="card">
<div class="card-body">
<h5>Volunteer</h5><br>
<strong>User ID</strong>: <span id="userID"></span><br>
<strong>Name</strong>: <span id="volunteerName"></span><br> <!-- Volunteer Name -->
<strong>Email</strong>: <span id="volunteerEmail"></span> <!-- Volunteer Email -->
</div>
</div>
<br>
<br>
<div class="card">
<div class="card-body">
<h5>Precinct Official - Name Verifier</h5><br> <!-- Volunteer Position - Position Name -->
<table class="table">
<thead>
<tr>
<th>Training</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pearl City Highlands Elementary School Cafeteria</td> <!-- Training Location -->
<td>6/14/2018</td> <!-- Training Date -->
<td>6:30 - 8:00 p.m.</td> <!-- Training Time -->
</tr>
</tbody>
</table>
<br>
<table class="table">
<thead>
<tr>
<th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pearl City Highlands Elementary School Cafeteria</td> <!-- Work Location Name -->
<td>8/11/2018</td> <!-- Primary Election Day -->
<td>7:00 a.m.</td> <!-- Position Shift -->
</tr>
</tbody>
</table>
<br>
<table class="table">
<thead>
<tr>
<th>Work</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pearl City Highlands Elementary School Cafeteria</td> <!-- Work Location Name -->
<td>11/6/2018</td> <!-- General Election Day -->
<td>7:00 a.m.</td> <!-- Position Shift -->
</tr>
</tbody>
</table>
</div>
</div>
<br><br>
</div>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
<!-- Optional JavaScript -->
<script src="js/admin-detail.js"></script>
</body>
</html>