forked from chrismelba/lightclockwifiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpassword.h
More file actions
20 lines (19 loc) · 754 Bytes
/
password.h
File metadata and controls
20 lines (19 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const char password_html[] PROGMEM = R"=====(
<!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.0">
<link rel=stylesheet href='clockmenustyle.css'>
</head>
<body class=settings-page>
<a href='/'>Network</a>-> <strong>Password</strong> -> Timezone<BR>
<h1>Password</h1>
<form class=form-verticle action=/timezonesetup method=GET>
<ul>
<label>Password: <input type=password name=pass id="pass"/></label><br>
<input type=submit value=Submit>
</form>
</body>
<script>function otherssid(){a=document.getElementById("other_ssid");a.checked=true}function regularssid(){a=document.getElementById("other_text");a.value=""};</script>
</html>
)=====";