DataGlove/page.h

22 lines
518 B
C
Raw Normal View History

#ifndef __PAGE_H__
#define __PAGE_H__
String page1 = R"(
<!DOCTYPE html>
<html>
<head>
<title>WiFi Configuration</title>
</head>
<body>
<h1>WiFi Configuration</h1>
<form action="/configure" method="POST">
SSID: <input type="text" name="ssid"><br>
Password: <input type="text" name="password"><br>
Target IP: <input type="text" name="target_ip"><br>
<input type="submit" value="configure">
</form>
</body>
</html>
)";
#endif