-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfigure.html
77 lines (54 loc) · 2.5 KB
/
configure.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap demo</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
</head>
<!--Required files to jquery range slider-->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/roundslider.min.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<!--bootstrap auto starter file-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V"
crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<style>
.roundslider {
display: inline-block;
}
</style>
<body>
<form>
<div class="mb-3">
<label for="Wireless_AP" class="form-label">Wireless AP</label>
<input type="wirelessap" class="form-control" id="Wireless_AP">
</div>
<div class="mb-3">
<label for="SecurityType" class="form-label">Security</label>
<select class="form-select" id="SecurityType">
<option value="1">None</option>
<option value="3">WEP</option>
<option value="2">WPA</option>
<option value="3">WPA2</option>
<option value="3">WPA3</option>
</select>
</div>
<div class="mb-3">
<label for="Password" class="form-label">Wireless Password</label>
<input type="password" class="form-control" id="Password">
</div>
<div class="mb-3">
<label for="Password" class="form-label">System Password</label>
<input type="password" class="form-control" id="Password">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz"
crossorigin="anonymous"></script>
</body>
</html>