You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
995 B
24 lines
995 B
static const char basicWebsite[] PROGMEM = "<!DOCTYPE html>\
|
|
<html>\
|
|
<head>\
|
|
<title>WLAN-Einrichtung</title>\
|
|
</head>\
|
|
<body>\
|
|
<form action=\"/init\" method=\"POST\">\
|
|
<fieldset>\
|
|
<legend>Initiale WLAN-Einrichtung</legend>\
|
|
<label for=\"ssid\">SSID:</label><br>\
|
|
<input type=\"text\" id=\"ssid\" name=\"ssid\" placeholder=\"SSID\" required><br>\
|
|
<label for=\"pwd\">Passwort:</label><br>\
|
|
<input type=\"password\" id=\"pwd\" name=\"pwd\" autocomplete=\"off\" required><br>\
|
|
<label for=\"hostname\">Tonuino-Name (Hostname):</label><br>\
|
|
<input type=\"text\" id=\"hostname\" name=\"hostname\" required><br><br>\
|
|
<input type=\"submit\" value=\"Absenden\">\
|
|
</fieldset>\
|
|
</form>\
|
|
<form action=\"/restart\">\
|
|
<button type=\"submit\">Neustart</button>\
|
|
</form>\
|
|
</body>\
|
|
</html>\
|
|
";
|