Files
OpenEPaperLink/ESP32_AP-Flasher/wwwroot/setup.html
Nic Limper f9b4d163bc cleanup and gzip web files
- clean up unnecessary files
- fix ota update, maybe preventing timeouts
- new 'wwwroot' folder for the web source files, and python script to gzip the files to the /data/www folder
- run gzip_wwwfiles.py to compress the files in wwwroot into /data/www
2023-07-29 20:47:12 +02:00

52 lines
1.4 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<title>setup page - Open EPaper Link Access Point</title>
<link rel="stylesheet" href="main.css" type="text/css" />
<link rel="icon" type="image/vnd.icon" href="favicon.ico">
<style>
.window input {
width: 120px;
}
h1 {
padding-top: 20px;
}
option, select {
font-family: monospace, 'lucida console', 'Courier New', Courier;
}
</style>
</head>
<body>
<header>
<div class="logo">Open EPaper Link Access Point</div>
</header>
<div class="container">
<div class="window">
<h1>WiFi config</h1>
<pre>
SSID <input type="text" id="ssid"> <button id="listssid">find SSID</button>
Password <input type="password" id="pw">
</pre>
<p>Fill in fields below for static IP. Otherwise, leave empty.<br></p>
<pre>
Static IP <input type="text" id="ip">
Subnet mask <input type="text" id="mask">
Gateway <input type="text" id="gw">
DNS <input type="text" id="dns">
</pre>
<button id="connect">Save WiFi settings and reboot</button><br>
</div>
</div>
<script src="setup.js"></script>
</body>
</html>