-
Notifications
You must be signed in to change notification settings - Fork 8
/
HTML.h
45 lines (45 loc) · 1.15 KB
/
HTML.h
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
const char INDEX_HTML[] PROGMEM = R"=====(
<!DOCTYPE HTML>
<html>
<head>
<title>iDispaly Navigator</title>
<meta name="viewport" content="width=device-width, initial-scale=1"charset="UTF-8" />
<style>
body{ background-color: #dad6eb;
font-family: Arial, Helvetica, Sans-Serif;
Color: #000000;
text-align:center;
}
table{ border-collapse: collapse
}
td{ border: 0px
solid black;
padding: 10px;
}
div {
width: 300px;
margin: auto;
border: 3px solid #4287f5;
}
</style>
</head>
<body>
<div>
<h3>Enter your WiFi credentials</h3>
<form action="/" method="post">
<table>
<tr>
<td><label>SSID: </label></td>
<td><input maxlength="30" name="ssid"></td>
</tr>
<tr>
<td><label>Password: </label></td>
<td><input maxlength="30" name="password"></td>
</tr>
</table>
<input type="submit" value="Save">
</form>
</div>
</body>
</html>
)=====";