Skip to content

Commit ddea7bf

Browse files
authored
Merge pull request #1 from biologist79/master
update master
2 parents cfddbf8 + e610442 commit ddea7bf

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+9298
-9255
lines changed

.editorconfig

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
[*] # Loosely following the kernel coding style: https://www.kernel.org/doc/html/v4.10/process/coding-style.html
5+
charset = utf-8
6+
end_of_line = lf
7+
indent_size = 8
8+
indent_style = tab
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true
11+
12+
[*.py] # Loosely following PEP-8: https://peps.python.org/pep-0008/
13+
indent_size = 4
14+
indent_style = space
15+
16+
[*.{html,htm}]
17+
indent_size = 4
18+
insert_final_newline = false
19+
20+
[*.csv]
21+
indent_size = unset
22+
indent_style = unset
23+
insert_final_newline = false
24+
25+
[platformio.ini]
26+
indent_size = 4
27+
indent_style = space

html/accesspoint_DE.html

Lines changed: 59 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,62 @@
11
<!DOCTYPE html>
22
<html>
3-
<head>
4-
<title>WLAN-Einrichtung</title>
5-
<meta charset="utf-8">
6-
<style>
7-
input {
8-
width: 90%;
9-
height: 44px;
10-
border-radius: 4px;
11-
margin: 10px auto;
12-
font-size: 15px;
13-
background: #f1f1f1;
14-
border: 0;
15-
padding: 0 15px
16-
}
17-
input {
18-
19-
}
20-
body {
21-
background: #007bff;
22-
font-family: sans-serif;
23-
font-size: 14px;
24-
color: #777
25-
}
26-
.box {
27-
background: #fff;
28-
max-width: 258px;
29-
margin: 75px auto;
30-
padding: 30px;
31-
border-radius: 5px;
32-
text-align: center
33-
}
34-
.btn {
35-
background: #3498db;
36-
color: #fff;
37-
cursor: pointer;
38-
width: 90%;
39-
height: 44px;
40-
border-radius: 4px;
41-
margin: 10px auto;
42-
font-size: 15px;
43-
}
44-
.rebootmsg {
45-
display: none;
46-
}
47-
</style>
48-
</head>
49-
<body>
50-
<form id="settings" action="/init" class="box" method="POST">
51-
<h1>WLAN-Einrichtung</h1>
52-
<label for="ssid">SSID:</label><br>
53-
<input type="text" id="ssid" name="ssid" placeholder="SSID" required><br>
54-
<label for="pwd">Passwort:</label><br>
55-
<input type="password" id="pwd" name="pwd" autocomplete="off" required><br>
56-
<label for="hostname">ESPuino-Name (Hostname):</label><br>
57-
<input type="text" id="hostname" name="hostname" placeholder="espuino" required><br><br>
58-
<input class="btn" type="submit" id="save-button" value="Save">
59-
</form>
60-
<form action="/restart" class="box">
61-
<h1>Fertig?</h1>
62-
<input class="btn" type="submit" id="restart-button" value="Reboot">
63-
</form>
64-
</body>
3+
<head>
4+
<title>WLAN-Einrichtung</title>
5+
<meta charset="utf-8">
6+
<style>
7+
input {
8+
width: 90%;
9+
height: 44px;
10+
border-radius: 4px;
11+
margin: 10px auto;
12+
font-size: 15px;
13+
background: #f1f1f1;
14+
border: 0;
15+
padding: 0 15px
16+
}
17+
body {
18+
background: #007bff;
19+
font-family: sans-serif;
20+
font-size: 14px;
21+
color: #777
22+
}
23+
.box {
24+
background: #fff;
25+
max-width: 258px;
26+
margin: 75px auto;
27+
padding: 30px;
28+
border-radius: 5px;
29+
text-align: center
30+
}
31+
.btn {
32+
background: #3498db;
33+
color: #fff;
34+
cursor: pointer;
35+
width: 90%;
36+
height: 44px;
37+
border-radius: 4px;
38+
margin: 10px auto;
39+
font-size: 15px;
40+
}
41+
.rebootmsg {
42+
display: none;
43+
}
44+
</style>
45+
</head>
46+
<body>
47+
<form id="settings" action="/init" class="box" method="POST">
48+
<h1>WLAN-Einrichtung</h1>
49+
<label for="ssid">SSID:</label><br>
50+
<input type="text" id="ssid" name="ssid" placeholder="SSID" required><br>
51+
<label for="pwd">Passwort:</label><br>
52+
<input type="password" id="pwd" name="pwd" autocomplete="off" required><br>
53+
<label for="hostname">ESPuino-Name (Hostname):</label><br>
54+
<input type="text" id="hostname" name="hostname" placeholder="espuino" required><br><br>
55+
<input class="btn" type="submit" id="save-button" value="Save">
56+
</form>
57+
<form action="/restart" class="box">
58+
<h1>Fertig?</h1>
59+
<input class="btn" type="submit" id="restart-button" value="Reboot">
60+
</form>
61+
</body>
6562
</html>

html/accesspoint_EN.html

Lines changed: 59 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,62 @@
11
<!DOCTYPE html>
22
<html>
3-
<head>
4-
<title>WiFi-configuration</title>
5-
<meta charset="utf-8">
6-
<style>
7-
input {
8-
width: 90%;
9-
height: 44px;
10-
border-radius: 4px;
11-
margin: 10px auto;
12-
font-size: 15px;
13-
background: #f1f1f1;
14-
border: 0;
15-
padding: 0 15px
16-
}
17-
input {
18-
19-
}
20-
body {
21-
background: #007bff;
22-
font-family: sans-serif;
23-
font-size: 14px;
24-
color: #777
25-
}
26-
.box {
27-
background: #fff;
28-
max-width: 258px;
29-
margin: 75px auto;
30-
padding: 30px;
31-
border-radius: 5px;
32-
text-align: center
33-
}
34-
.btn {
35-
background: #3498db;
36-
color: #fff;
37-
cursor: pointer;
38-
width: 90%;
39-
height: 44px;
40-
border-radius: 4px;
41-
margin: 10px auto;
42-
font-size: 15px;
43-
}
44-
.rebootmsg {
45-
display: none;
46-
}
47-
</style>
48-
</head>
49-
<body>
50-
<form id="settings" action="/init" class="box" method="POST">
51-
<h1>WiFi-configuration</h1>
52-
<label for="ssid">SSID:</label><br>
53-
<input type="text" id="ssid" name="ssid" placeholder="SSID" required><br>
54-
<label for="pwd">Password:</label><br>
55-
<input type="password" id="pwd" name="pwd" autocomplete="off" required><br>
56-
<label for="hostname">ESPuino's name (hostname):</label><br>
57-
<input type="text" id="hostname" name="hostname" placeholder="espuino" required><br><br>
58-
<input class="btn" type="submit" id="save-button" value="Save">
59-
</form>
60-
<form action="/restart" class="box">
61-
<h1>Ready to go?</h1>
62-
<input class="btn" type="submit" id="restart-button" value="Reboot">
63-
</form>
64-
</body>
3+
<head>
4+
<title>WiFi-configuration</title>
5+
<meta charset="utf-8">
6+
<style>
7+
input {
8+
width: 90%;
9+
height: 44px;
10+
border-radius: 4px;
11+
margin: 10px auto;
12+
font-size: 15px;
13+
background: #f1f1f1;
14+
border: 0;
15+
padding: 0 15px
16+
}
17+
body {
18+
background: #007bff;
19+
font-family: sans-serif;
20+
font-size: 14px;
21+
color: #777
22+
}
23+
.box {
24+
background: #fff;
25+
max-width: 258px;
26+
margin: 75px auto;
27+
padding: 30px;
28+
border-radius: 5px;
29+
text-align: center
30+
}
31+
.btn {
32+
background: #3498db;
33+
color: #fff;
34+
cursor: pointer;
35+
width: 90%;
36+
height: 44px;
37+
border-radius: 4px;
38+
margin: 10px auto;
39+
font-size: 15px;
40+
}
41+
.rebootmsg {
42+
display: none;
43+
}
44+
</style>
45+
</head>
46+
<body>
47+
<form id="settings" action="/init" class="box" method="POST">
48+
<h1>WiFi-configuration</h1>
49+
<label for="ssid">SSID:</label><br>
50+
<input type="text" id="ssid" name="ssid" placeholder="SSID" required><br>
51+
<label for="pwd">Password:</label><br>
52+
<input type="password" id="pwd" name="pwd" autocomplete="off" required><br>
53+
<label for="hostname">ESPuino's name (hostname):</label><br>
54+
<input type="text" id="hostname" name="hostname" placeholder="espuino" required><br><br>
55+
<input class="btn" type="submit" id="save-button" value="Save">
56+
</form>
57+
<form action="/restart" class="box">
58+
<h1>Ready to go?</h1>
59+
<input class="btn" type="submit" id="restart-button" value="Reboot">
60+
</form>
61+
</body>
6562
</html>

0 commit comments

Comments
 (0)