This repository was archived by the owner on Feb 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdashboard.html
More file actions
75 lines (63 loc) · 2.8 KB
/
Copy pathdashboard.html
File metadata and controls
75 lines (63 loc) · 2.8 KB
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
---
layout: default
title: Registrant Dashboard
permalink: /dashboard/
---
<meta name="robots" content="noindex,nofollow">
<script src="//code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="//cdn.datatables.net/1.10.8/js/jquery.dataTables.min.js"></script>
<div view class="animatable" id="view-check-email">
<div class="container">
<h3>Authentication:</h3>
<input type="password" id="apiKey" placeholder="API Key">
<hr>
<h3>Send attendance confirmation emails to all registrants that:</h3>
<ol>
<li>Have verified their email address</li>
<li>Do not appear on the waitlist</li>
<li>Have not previously received an attendance confirmation email</li>
</ol>
<button onclick="Dashboard.sendConfirmation()">Send attendance confirmation email</button>
<hr>
<h3>Send confirm attendance email to an individual</h3>
<small><i>Note, this action should only be used in rare circumstances as it:</i></small>
<ol>
<li>Removes an individual registrant from the waitlist if they are on it</li>
<li>Sends an attendance confirmation email regardless of whether the registrant has received one</li>
</ol>
<input id="individualEmailConfirmation" type="text" placeholder="individual@mail.uc.edu">
<button onclick="Dashboard.sendConfirmationToIndividual()">Send individual attendance confirmation</button>
<hr>
<h3>Send confirmation email to sitting ducks</h3>
<small><i>Note, a sitting duck is a registrant such that:</i></small>
<ol>
<li>Has previously received an attendance confirmation email</li>
<li>But has not confirmed/denied their attendance</li>
<li>(Email will be verified implicitly as per first point)</li>
</ol>
<button onclick="Dashboard.sendConfirmationSittingDucks()">Send confirmation email to sitting ducks</button>
<hr>
<h3>Send confirmation email to the waitlisted</h3>
<small><i>Note, this action sends attendance confirmation emails to all registrants that:</i></small>
<ol>
<li>Have verified their email address</li>
<li>Have registered after we hit our waitlist threshold</li>
<li>(Or is waitlisted for some other reason)</li>
</ol>
<button onclick="Dashboard.sendConfirmationWaitlisted()">Send confirmation email to the waitlisted</button>
<hr>
<h3>Perform Check-In</h3>
<small><i>Note, this marks an individual user as "checked in", in the database regardless of their status in the database</i></small>
<br>
<input id="individualEmailCheckIn" type="text" placeholder="individual@mail.uc.edu">
<button onclick="Dashboard.checkIn()">Check In</button>
<hr>
<h3>Fetch registrants</h3>
<button onclick="Dashboard.fetchRegistrants()">Fetch Registrants</button>
<table style="font-size: 15px;margin:0 auto;">
<thead></thead>
<tbody></tbody>
</table>
</div>
</div>
<script src="/js/dashboard.js" async defer></script>