25 lines
553 B
HTML
25 lines
553 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body {
|
|
background-color: #ffffff;
|
|
}
|
|
</style>
|
|
<title>ESP Captive Portal</title>
|
|
</head>
|
|
<body>
|
|
<h1>ESP Captive Portal</h1>
|
|
<p>Hello World, this is ESP32!</p>
|
|
|
|
<form action="/configure" method="post">
|
|
<label for="ssid">WiFi SSID:</label><br>
|
|
<input type="text" id="ssid" name="ssid"><br>
|
|
<label for="password">WiFi Password:</label><br>
|
|
<input type="password" id="password" name="password"><br>
|
|
<input type="submit" value="Submit">
|
|
</form>
|
|
|
|
</body>
|
|
</html>
|