2026-02-16 20:00:32 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="de">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
<title>Login - Watchdog Docker</title>
|
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
.login-container {
|
|
|
|
|
max-width: 400px;
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
.login-card {
|
|
|
|
|
background: white;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
|
|
|
|
|
padding: 40px;
|
|
|
|
|
}
|
|
|
|
|
.login-header {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
}
|
|
|
|
|
.login-header h1 {
|
|
|
|
|
color: #333;
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
.login-header p {
|
|
|
|
|
color: #666;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
.logo {
|
|
|
|
|
font-size: 64px;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
.btn-login {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 12px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
border: none;
|
|
|
|
|
transition: transform 0.2s;
|
|
|
|
|
}
|
|
|
|
|
.btn-login:hover {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
|
|
|
|
}
|
|
|
|
|
.form-control:focus {
|
|
|
|
|
border-color: #667eea;
|
|
|
|
|
box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="login-container">
|
|
|
|
|
<div class="login-card">
|
|
|
|
|
<div class="login-header">
|
|
|
|
|
<div class="logo">🔐</div>
|
|
|
|
|
<h1>Watchdog Docker</h1>
|
|
|
|
|
<p>OPNsense Monitoring System</p>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
|
|
|
{% if messages %}
|
|
|
|
|
{% for category, message in messages %}
|
|
|
|
|
<div class="alert alert-{{ category }} alert-dismissible fade show" role="alert">
|
|
|
|
|
{{ message }}
|
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
|
|
|
|
|
</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% endif %}
|
|
|
|
|
{% endwith %}
|
|
|
|
|
|
|
|
|
|
<form method="POST" action="{{ url_for('login') }}">
|
|
|
|
|
<div class="mb-3">
|
|
|
|
|
<label for="username" class="form-label">Benutzername</label>
|
|
|
|
|
<input type="text"
|
|
|
|
|
class="form-control"
|
|
|
|
|
id="username"
|
|
|
|
|
name="username"
|
|
|
|
|
placeholder="admin"
|
|
|
|
|
required
|
|
|
|
|
autofocus>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-4">
|
|
|
|
|
<label for="password" class="form-label">Passwort</label>
|
|
|
|
|
<input type="password"
|
|
|
|
|
class="form-control"
|
|
|
|
|
id="password"
|
|
|
|
|
name="password"
|
|
|
|
|
placeholder="••••••••"
|
|
|
|
|
required>
|
|
|
|
|
</div>
|
|
|
|
|
<button type="submit" class="btn btn-primary btn-login">
|
|
|
|
|
Anmelden
|
|
|
|
|
</button>
|
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
<div class="text-center mt-4">
|
2026-02-16 20:05:58 +00:00
|
|
|
<small class="text-muted">Watchdog Docker</small>
|
2026-02-16 20:00:32 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|