-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (40 loc) · 1.46 KB
/
Copy pathindex.html
File metadata and controls
47 lines (40 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dia de Los Ancestros Voting</title>
<link rel="stylesheet" href="styles.css">
<!-- Preload the main script -->
<link rel="modulepreload" href="js/main.js">
<link rel="modulepreload" href="js/preloader.js">
</head>
<body>
<!-- Preloader script needs to run immediately -->
<script type="module">
import { Preloader } from './js/preloader.js';
window.preloader = new Preloader();
</script>
<!-- Main content -->
<div class="container">
<h1></h1>
<div class="section instructions">
<h2>Voting Instructions</h2>
<ul>
<li>For each category, select up to 2 of your favorite dishes.</li>
<li>Enter the number associated with the dish in each category you want to vote for.</li>
<li>You can select either one, two or no dishes per category.</li>
</ul>
</div>
<div id="loading-spinner" class="loading-spinner" style="display: none;">
<div class="spinner"></div>
</div>
<div id="categories">
</div>
<button id="submitVotes" class="btn-primary">Submit Your Votes</button>
</div>
<div id="toastContainer"></div>
<!-- Main application script -->
<script type="module" src="js/main.js"></script>
</body>
</html>