-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin.html
136 lines (120 loc) · 5.25 KB
/
admin.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-M2wvCLH6DSRazYeZRIm1JnYyh22purTM+FDB5CsyxtQJYeKq83arPe5wgbNmcFXGqiSH2XR8dT/fJISVA1r/zQ==" crossorigin=""/>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/esri-leaflet-geocoder.css">
<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>
<br>
<div class="card">
<div class="card-body">
<ul class="nav nav-pills nav-fill">
<li class="nav-item">
<a class="nav-link" href="#">Calendar Management</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="#">Registration List</a>
</li>
</ul>
</div>
</div>
<br>
<div class="card">
<div class="card-body">
<h5>Registered Volunteers</h5><br>
<form id="registeredVolunteerSearch" action="">
<div class="row">
<div class="col-sm-12 col-md-6">
<div class="form-group">
<label for="searchQuery">Search Query</label>
<input id="searchQuery" type="text" class="form-control" placeholder="Search Query">
</div>
</div>
<div class="col-sm-12 col-md-6">
<div class="form-group">
<label for="searchConstraint">Constraint</label>
<select class="form-control" id="prefConMeth">
<option value="fullName">Name</option>
<option value="job">Job</option>
<option value="precinctLocation">Precinct Location</option>
<option value="trainingLocation">Training Session</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="form-group">
<button id="submitSearch" type="submit" class="btn btn-primary" onClick="listvols()" return="false">Search</button>
<button id="bulkEmail" type="submit" class="btn btn-warning">Send Bulk Email to Search Criteria</button>
</div>
</div>
</div>
</form>
</div>
<div class="card-body">
<table class="table">
<thead>
<tr>
<th>Vol #</th>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Precinct</th>
<th>Job</th>
</tr>
</thead>
<tbody class="usertable">
</tbody>
</table>
</div>
</div>
<br><br>
<div class="card">
<div class="card-body">
<div id="adminViewPolls"></div>
</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>
<!-- Make sure you put this AFTER Leaflet's CSS -->
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-lInM/apFSqyy1o6s89K4iQUKg6ppXEgsVxT35HbzUupEVRh2Eu9Wdl4tHj7dZO0s1uvplcYGmt3498TtHq+log==" crossorigin=""></script>
<!-- Load Esri Leaflet from CDN -->
<script src="https://unpkg.com/[email protected]/dist/esri-leaflet.js"
integrity="sha512-ECQqaYZke9cSdqlFG08zSkudgrdF6I1d8ViSa7I3VIszJyVqw4ng1G8sehEXlumdMnFYfzY0tMgdQa4WCs9IUw=="
crossorigin=""></script>
<!-- Esri Leaflet Geocoder -->
<script src="https://unpkg.com/[email protected]"></script>
<!-- Optional JavaScript -->
<script src=admin_map.js></script>
<script src=js/admin.js></script>
</body>
</html>