-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (50 loc) · 1.49 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
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>League Role Shuffler</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html-to-image/1.11.11/html-to-image.min.js"></script>
<script type="module" src="script.js" defer></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h2>Input</h2>
<form id="form">
<div class="form-group">
<input
type="text"
id="name1"
name="name1"
required
placeholder="Name1"
/>
</div>
<div class="form-group">
<input type="text" id="name2" name="name2" placeholder="Name2" />
</div>
<div class="form-group">
<input type="text" id="name3" name="name3" placeholder="Name3" />
</div>
<div class="form-group">
<input type="text" id="name4" name="name4" placeholder="Name4" />
</div>
<div class="form-group">
<input type="text" id="name5" name="name5" placeholder="Name5" />
</div>
<div class="form-group">
<label for="">Optional Discord Webhook</label>
<input
type="text"
id="webhookURL"
name="webhookURL"
placeholder="URL"
/>
</div>
<div class="form-group">
<button id="shuffle-button" type="submit">Shuffle</button>
</div>
</form>
<div id="output"></div>
</body>
</html>