-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (32 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Reaction Reactor</title>
<link rel="stylesheet" href="main.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<div id="content" class="vertical-center-outer">
<div class="vertical-center-inner">
<h1>Reaction Reactor</h1>
<form id="main-form" class="centered-form" method="GET">
<div>
<label for="url-input">Image URL</label>
<input type="text" name="url" />
</div>
<div>
<label for="angle-input">Angle <small>degrees</small></label>
<input type="number" name="angle" min="-360" max="360" value="135" />
</div>
<div>
<label for="speed-input">Speed <small><sup>pixels</sup>⁄<sub>second</sub></small></label>
<input type="number" name="speed" value="200" />
</div>
<button type="submit" id="submit-button" class="big-button" disabled>REACT!</button>
</form>
</div>
</div>
</body>
</html>