-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecretsanta2025.html
More file actions
55 lines (49 loc) · 1.42 KB
/
secretsanta2025.html
File metadata and controls
55 lines (49 loc) · 1.42 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Simple Secret Group URL Generator</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>Group URL Generator</h1>
<section>
<h2>Group A</h2>
<label>Group name
<input id="groupName" placeholder="Family 2025" />
</label>
<label>Members (one per line)
<textarea id="members" rows="6" placeholder="Alice\nBob\nCharlie"></textarea>
</label>
</section>
<section>
<h2>Group B</h2>
<label>Group name
<input id="groupNameB" placeholder="In-laws 2025" />
</label>
<label>Members (one per line)
<textarea id="membersB" rows="6" placeholder="Dana\nEvan\nFrank"></textarea>
</label>
</section>
<section>
<h2>Generate URLs</h2>
<label>Randomization seed (optional)
<input id="seed" placeholder="leave blank for random" />
</label>
<div class="controls">
<button id="generateBtn">Generate URLs</button>
</div>
</section>
<section id="outputSection">
<h2>Generated Links</h2>
<ul id="linksList"></ul>
</section>
<footer>
<small>Links are encoded as short ids for each member. Open a link to view their assignment.</small>
</footer>
</main>
<script src="app.js"></script>
</body>
</html>