-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (42 loc) · 1.24 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Secret Santa</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<img src="assets/banner.png" />
<h1>
Super Simple Secret Santa
</h1>
<p>
Enter the list of names, with commas separating each one.
</p>
<p>
You can try it out with some reindeer names below.
</p>
<input type="text" id="names" value="Rudolph, Dasher, Comet" />
<br />
<input onclick="submitNames()" id="namesButton" type="submit" value="Create assignments" />
<br />
<p>
Send each person their link. Opening it tells them who to buy a gift for.
</p>
<ul id="links">
</ul>
<br />
<p>
Source code available at
<a target="_blank" href="https://github.com/kbrose/secret-santa">github.com/kbrose/secret-santa</a>
</p>
</main>
<script src="main.js"></script>
<noscript>
<!-- Optional, place it wherever it makes sense -->
JavaScript must be enabled.
</noscript>
</body>
</html>