-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcodes.html
26 lines (26 loc) · 1.09 KB
/
codes.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./codes.js" type="javascript"></script>
<title>Add code</title>
</head>
<body>
<div id="main">
<form method="post" onsubmit="addcode(event)" id="form_1">
<div>
<label class="label" for="codes">Codes (if more than one, separate them by space like "ASDEFR ASDEFRG")</label>
<div class="control has-icons-left has-icons-right">
<input class="input is-primary" id="codes" name="codes" type="text" required value />
<span class="icon is-small is-left"><i aria-hidden="true" class="fas fa-user"></i></span>
<span class="icon is-small is-right"><i aria-hidden="true" class="fas fa-check"></i></span>
</div>
<br/>
<div>
<button type="submit" onsubmit="addcode(event)" class="button is-success">Submit</button>
</div>
</div>
</form>
</div>
</body>
</html>