AI update
This commit is contained in:
@@ -1,20 +1,141 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<title>Konfiguration</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>WLAN Einstellungen</h1>
|
||||
<form action="/wlan-config" method="post">
|
||||
<label>SSID:</label>
|
||||
<input type="text" name="ssid">
|
||||
<br>
|
||||
<label>Passwort:</label>
|
||||
<input type="password" name="password">
|
||||
<br>
|
||||
<input type="submit" value="Speichern">
|
||||
</form>
|
||||
</body>
|
||||
<html lang="de">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>WLAN Konfiguration</title>
|
||||
<style>
|
||||
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
|
||||
background: #0d1117;
|
||||
color: #c9d1d9;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 24px;
|
||||
}
|
||||
.container { width: 100%; max-width: 420px; }
|
||||
.back {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
font-size: 13px;
|
||||
color: #8b949e;
|
||||
text-decoration: none;
|
||||
margin-bottom: 24px;
|
||||
transition: color 0.15s;
|
||||
}
|
||||
.back:hover { color: #388bfd; }
|
||||
.card {
|
||||
background: #161b22;
|
||||
border: 1px solid #30363d;
|
||||
border-radius: 12px;
|
||||
padding: 28px;
|
||||
}
|
||||
.card-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
.card-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
background: #1a2e23;
|
||||
border-radius: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 20px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
h1 {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
color: #f0f6fc;
|
||||
}
|
||||
.card-subtitle {
|
||||
font-size: 12px;
|
||||
color: #8b949e;
|
||||
margin-top: 2px;
|
||||
}
|
||||
.form-group { margin-bottom: 18px; }
|
||||
label {
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
color: #8b949e;
|
||||
margin-bottom: 6px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
input[type="text"],
|
||||
input[type="password"],
|
||||
input[type="number"] {
|
||||
width: 100%;
|
||||
background: #0d1117;
|
||||
border: 1px solid #30363d;
|
||||
border-radius: 8px;
|
||||
padding: 10px 12px;
|
||||
font-size: 14px;
|
||||
color: #f0f6fc;
|
||||
outline: none;
|
||||
transition: border-color 0.15s;
|
||||
font-family: inherit;
|
||||
}
|
||||
input:focus { border-color: #388bfd; }
|
||||
input::placeholder { color: #484f58; }
|
||||
.divider {
|
||||
border: none;
|
||||
border-top: 1px solid #30363d;
|
||||
margin: 22px 0;
|
||||
}
|
||||
button[type="submit"] {
|
||||
width: 100%;
|
||||
background: #238636;
|
||||
border: 1px solid #2ea043;
|
||||
border-radius: 8px;
|
||||
padding: 11px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
transition: background 0.15s, border-color 0.15s;
|
||||
font-family: inherit;
|
||||
}
|
||||
button[type="submit"]:hover {
|
||||
background: #2ea043;
|
||||
border-color: #3fb950;
|
||||
}
|
||||
button[type="submit"]:active { background: #1a7f37; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<a href="/" class="back">← Zurück</a>
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<div class="card-icon">📶</div>
|
||||
<div>
|
||||
<h1>WLAN</h1>
|
||||
<p class="card-subtitle">Netzwerkverbindung konfigurieren</p>
|
||||
</div>
|
||||
</div>
|
||||
<form action="/wlan-config" method="post">
|
||||
<div class="form-group">
|
||||
<label for="ssid">SSID</label>
|
||||
<input type="text" id="ssid" name="ssid" placeholder="Netzwerkname" autocomplete="off">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="password">Passwort</label>
|
||||
<input type="password" id="password" name="password" placeholder="••••••••" autocomplete="off">
|
||||
</div>
|
||||
<hr class="divider">
|
||||
<button type="submit">Speichern & Verbinden</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user