-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (29 loc) · 875 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" />
<title>Náboj</title>
<script src="./sha256.js"></script>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<h1 id="title">Informatický náboj PRASK</h1>
<form id="form">
<div id="problem-select-wrap">
<span id="label">Vyber úlohu:</span>
<select name="problems" id="problem-select"></select>
</div>
<textarea
name="area"
id="input-area"
placeholder="Sem vložte správny výstup"
autocomplete="new-password"
></textarea>
<input type="submit" value="Submit" id="submit" />
</form>
</body>
<script src="./words.js"></script>
<script src="./main.js"></script>
</html>