-
Notifications
You must be signed in to change notification settings - Fork 7
/
pc_usb_hack.html
31 lines (30 loc) · 1.06 KB
/
pc_usb_hack.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Setting Charge</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/pc_usb_hack.css">
</head>
<body>
<div id='hackBlock'>
<form class='settings'>
<h1 class='header'>Set parameters</h1>
<div class='parameter'>
<label>Memorization time: </label>
<input type="number" id="memTime" min='1' max='60' value='3' step='.5' required/>
</div>
<div class='parameter'>
<label>Answer time: </label>
<input type="number" id="ansTime" min='3' max='60' value='5' step='.5' required/>
</div>
<button class='startButton'>Start!</button>
</form>
<form action='index.html'>
<input type="submit" value="Home"/>
</form>
</div>
<script src='scripts/pc_usb_hack.js' type="text/javascript"></script>
</body>
</html>