-
Notifications
You must be signed in to change notification settings - Fork 1
/
web_config_wifi.SOURCE.html
75 lines (69 loc) · 2.04 KB
/
web_config_wifi.SOURCE.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="icon" type="image/png" sizes="16x16" href="/favicon.16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon.32x32.png">
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title><?py title ?></title>
<?py '<meta http-equiv="Refresh" content="5; url=/" />' if (style == 'confirmed') else '' ?>
<link rel="stylesheet" type="text/css" href="web_nn.css">
</head>
<body>
<div class="mainTables">
<form method="POST">
<table class="mainTables">
<tr>
<td rowspan="9"> </td>
<td colspan="2"><?py title ?></td>
<td rowspan="7"> </td>
</tr>
<tr>
<td>Device Unique ID:</td>
<td class="ro"><pre><?py uid ?></pre></td>
</tr>
<tr>
<td>MAC Address:</td>
<td class="ro"><pre><?py mac ?></pre></td>
</tr>
<tr>
<td colspan=2> </td>
</tr>
<tr>
<td>SSID:</td>
<td><input
name="ssid"
type="text"
value="<?py ssid ?>"
placeholder="My Network SSID"
></td>
</tr>
<tr>
<td>Passphrase:</td>
<td><input
name="passphrase"
type="password"
value=""
placeholder="My Network Passphrase"
></td>
</tr>
<tr>
<td colspan=2> </td>
</tr>
<tr>
<td class="<?py style if style else '' ?>" colspan=3>
<?py msg if msg else ' ' ?>
</td>
</tr>
<tr>
<td colspan=3>
<input type="submit" value="Save">
</td>
</tr>
<tr>
<td class="byline ro" colspan=4><em><?py ver ?></em></td>
</tr>
</table>
</form>
</div>
</body>
</html>