This repository was archived by the owner on May 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhtml.html
More file actions
32 lines (32 loc) · 2.32 KB
/
html.html
File metadata and controls
32 lines (32 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SeniorOS WiFi Configuration</title>
<style>
body { font-family: sans-serif; background: #f5f5f7; margin: 0; padding: 100px; color: #333; }
.form-container { max-width: 400px; margin: 40px auto; background: #fff; padding: 20px; box-shadow: 0 8px 16px rgba(0,0,0,.2); border-radius: 19px; }
input[type="text"], input[type="submit"] { width: calc(100% - 22px); padding: 10px; margin: 10px 0; border: 1px solid #d9d9d9; border-radius: 10px; font-size: 16px; }
input[type="submit"] { background: #007aff; color: white; cursor: pointer; }
input[type="submit"]:hover { background: #006ae3; }
a { display: inline-block; padding: 10px 15px; background: #ff3b30; color: white; text-decoration: none; border-radius: 25px; font-size: 16px; }
a:hover { background: #e6332e; }
</style>
</head>
<body>
<div class="form-container">
<form action="http://192.168.4.1" method="get">
<label for="ssid">输入文本</label>
<input type="text" id="text" name="text" placeholder="输入文本">
<input type="submit" value="提交">
</form>
<form action="http://192.168.4.1" method="get">
<label for="pwd">WifiPassword</label>
<input type="text" id="pwd" name="pwd" placeholder="Type your wifiPassword">
<input type="submit" value="Upload">
</form>
<a href="http://192.168.4.1/exit">Exit</a>
</div>
</body>
</html>