35 lines
758 B
HTML
35 lines
758 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>
|
|
-->
|
|
<table class="KKK">
|
|
<tr>
|
|
<th></th>
|
|
<th style="width:100px">ID</th>
|
|
<th style="width:100px">PW</th>
|
|
</tr>
|
|
<tr>
|
|
<td>1</td>
|
|
<td contenteditable>DinoGast</td>
|
|
<td contenteditable>Schokolade</td>
|
|
<tr>
|
|
<td>2</td>
|
|
<td contenteditable></td>
|
|
<td contenteditable></td>
|
|
</tr>
|
|
|
|
</body>
|
|
</html>
|
|
|