-
Notifications
You must be signed in to change notification settings - Fork 17
/
submit.html
58 lines (57 loc) · 2.18 KB
/
submit.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" />
<title>Submit</title>
<link rel="stylesheet" href="submit.css" />
<script src="submit.js"></script>
</head>
<body>
<div id="form">
<div>
<h1 id="header">Submit New Sticker</h1>
<p>Please be aware that any submission will be applied after a review. This may take some time.</p>
<p>As an alternative, you can also create a merge request on <a href="https://github.com/mwarning/chaos-sticker-collection">GitHub</a>.</p>
</div>
<div><label>Tags:</label><input id="tags" type="text" name="tags"></div>
<div><label>Title:</label><input id="title" type="text" name="title"></div>
<div><label>Author:</label><input id="author" type="text" name="author"></div>
<div><label>Notes:</label><input id="notes" type="text" name="notes"></div>
<div><label>Link:</label><input id="link" type="text" name="link"></div>
<div><label>License:</label>
<select id="license" name="license">
<option value="">Unknown</option>
<option value="CC0-1.0">CC0-1.0</option>
<option value="Unlicense">Unlicense</option>
<option value="CC-BY-3.0">CC-BY-3.0</option>
<option value="CC-BY-SA-4.0">CC-BY-SA-4.0</option>
<option value="CC-BY-SA-3.0">CC-BY-SA-3.0</option>
<option value="LAL-1.3">LAL-1.3</option>
</select>
</div>
<div>
<label>Language:</label>
<select id="language" name="language">
<option value="">Unknown</option>
<option value="english">English</option>
<option value="french">French</option>
<option value="dutch">Dutch</option>
<option value="german">German</option>
</select>
</div>
<div>
<label>Image Files:</label>
<div>
<div>
<input id="file_input" type="file" name="files" accept=".jpg,.png,.svg,.pdf,.tiff,.ai,.eps">
<button id="file_select">Select File</button>
</div>
<span id="file_list"></span>
</div>
</div>
<div>
<button id="submit">Submit</button>
</div>
</div>
</body>
</html>