br0tcabeln/templates/login.html
2024-08-17 18:57:14 +02:00

99 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anmelden</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
h1 {
color: #333;
margin-top: 50px;
}
.container {
margin-top: 30px;
}
form {
display: inline-block;
text-align: left;
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
}
.form-group input {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
}
.button {
display: inline-block;
padding: 15px 25px;
font-size: 18px;
color: white;
background-color: #007bff;
border: none;
border-radius: 5px;
text-decoration: none;
cursor: pointer;
}
.button:hover {
background-color: #0056b3;
}
.flash-message {
margin-bottom: 15px;
padding: 10px;
border-radius: 5px;
}
.flash-message.success {
color: green;
border: 1px solid green;
background-color: #d4edda;
}
.flash-message.error {
color: red;
border: 1px solid red;
background-color: #f8d7da;
}
</style>
</head>
<body>
<h1>Anmelden</h1>
<div class="container">
{% with messages = get_flashed_messages(with_categories=True) %}
{% if messages %}
{% for category, message in messages %}
<div class="flash-message {{ category }}">{{ message }}</div>
{% endfor %}
{% endif %}
{% endwith %}
<form method="post" action="/login">
<div class="form-group">
<label for="username">Benutzername:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="password">Passwort:</label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit" class="button">Anmelden</button>
</form>
<a href="/register" class="button">Noch kein Konto? Registrieren</a>
</div>
</body>
</html>