17 lines
469 B
HTML
17 lines
469 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ESP32 Web Server</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" href="data:,">
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
</head>
|
|
<body>
|
|
<h1>ESP32 Web Server</h1>
|
|
<p>GPIO state: <strong> %STATE%</strong></p>
|
|
<p><a href="/on"><button class="button">ON</button></a></p>
|
|
<p><a href="/off"><button class="button button2">OFF</button></a></p>
|
|
</body>
|
|
</html>
|
|
|