/* * HtmlPage.h * * Created on: 08.06.2026 * Author: FSmilari */ #ifndef HTMLPAGES_H_ #define HTMLPAGES_H_ #include const String getSetupPage(String macAddress) { String html = R"rawliteral( Wemos LEDLamp Setup

Wemos LEDLamp Setup

Device: )rawliteral" + macAddress + R"rawliteral(
👁
Verbinde den LEDLamp Wemos mit einem WLAN Netzwerk
)rawliteral"; return html; } const String getSTAControlPage(String macAddress) { String html = R"rawliteral( Wemos LEDLamp Control

Wemos LEDLamp Control

Device: )rawliteral" + macAddress + R"rawliteral(
-
)rawliteral"; return html; } const String getConnectionSuccessPage() { String html = R"rawliteral( Wemos LEDLamp Setup

Wemos LEDLamp Setup gespeichert!

Wemos startet neu...
)rawliteral"; return html; } #endif /* HTMLPAGES_H_ */