-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
43 lines (32 loc) · 1.28 KB
/
settings.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
<!DOCTYPE html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Titillium+Web' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="icons/css/font-awesome.min.css">
<link rel="stylesheet" href="css/normalize.css">
<link href="css/main.css" type="text/css" rel="stylesheet"/>
<script type="text/javascript">
var setting=document.getElementById("button2");
</script>
</head>
<body>
<section class="common-container container">
<div class="common-body">
<section class ="common-header">
<h1 class="header-title">Settings</h1>
</section>
<form class="login-content" action="index.html">
<div class="setting-input">
<h1>Upper Range</h1><input type="number" name="Enter Upper Range" placeholder="Enter Upper Range" class="one range"/>
<h1>Lower Range</h1><input type="number" name="Enter LowerRange" placeholder="Enter LowerRange" class="one range"/>
</div>
<div class="position-setting">
<a href="#" id="button2" class="button b1" onSubmit="redirect()" >Ok</a>
<a href="#" id="button2" class="button b2" onSubmit="redirect()">Cancel</a>
</div>
</div>
</form>
</div>
</section>
</body>
</html>