-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.h
40 lines (35 loc) · 1.04 KB
/
settings.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
const char SETUP_page[] PROGMEM = R"=====(
<h3>Settings</h3>
<form action="/action_page">
<b> WiFi Settings</b><BR>
SSID:<br>
<input type="text" name="ssid" value="__SSID__">
<br>
password:<br>
<input type="password" name="ssid_pass" value="__SSID_PASS__">
<br>
hostname:<br>
<input type="text" name="hostname" value="__HOSTNAME__">
<br>
<br>
<b> MQTT Settings </b><BR>
server:<br>
<input type="text" name="mqtt_server" value="__MQTT_SERVER__">
<br>
port:<br>
<input type="text" name="mqtt_port" value="__MQTT_PORT__">
<br>
user:<br>
<input type="text" name="mqtt_user" value="__MQTT_USER__">
<br>
password:<br>
<input type="password" name="mqtt_pass" value="__MQTT_PASS__">
<br>
<br><br>
<input type="submit" class="buttonGreenSmall buttonGrey" name="action" value="Cancel">
<input type="submit" class="buttonGreenSmall" name="action" value="Save">
<input type="submit" class="buttonGreenSmall buttonRed" name="action" value="Reboot">
</form>
</body>
</html>
)=====";