-
Notifications
You must be signed in to change notification settings - Fork 35
/
config.htm
86 lines (78 loc) · 1.5 KB
/
config.htm
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
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html>
<head>
<title>IoT Wi-Fi Setup</title>
<style media='screen' type='text/css'>
* {
margin: 0;
padding: 0;
}
div {
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 320px;
height: 274px;
}
form {
width: 320px;
text-align: center;
position: relative;
}
form fieldset {
background: white;
border: 0 none;
border-radius: 5px;
box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
padding: 20px 30px;
box-sizing: border-box;
}
form input {
padding: 15px;
border: 1px solid #ccc;
border-radius: 3px;
margin-bottom: 10px;
width: 100%;
box-sizing: border-box;
font-family: montserrat;
color: #2C3E50;
font-size: 13px;
}
form .action-button {
width: 100px;
background: #27AE60;
font-weight: bold;
color: white;
border: 0 none;
border-radius: 3px;
cursor: pointer;
padding: 10px 5px;
margin: 10px 5px;
}
form .action-button:hover, #msform .action-button:focus {
box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
</style>
</head>
<body bgcolor='#E6E6E6'>
<div>
<h2>
<font face="Arial">IoT Wi-Fi Setup</font>
</h2>
<hr>
<br>
<form>
<input type="text" name="ssid" value='_ssid'> <br>
<input type="password" name="pwd" value='_pwd'><br>
<input type="text" name="host" value='_host'><br>
<input type="text" name="domain" value='_domain'><br>
<input type="text" name="path" value='_path'><br>
<input type="number" size=4 name="update" value='_update'><br>
<input type="Submit" value="SAVE"><br>
<br>
</form>
</div>
</html>