modified: web/blueprints/auth.py

modified:   web/blueprints/group_admin.py
	modified:   web/blueprints/panel.py
	modified:   web/blueprints/site_admin.py
	modified:   web/templates/admin/base.html
	modified:   web/templates/admin/dashboard.html
	modified:   web/templates/admin/group_edit.html
	modified:   web/templates/admin/group_members.html
	modified:   web/templates/admin/groups.html
	modified:   web/templates/admin/user_edit.html
	modified:   web/templates/admin/users.html
	modified:   web/templates/auth/admin_login.html
	modified:   web/templates/auth/login.html
	modified:   web/templates/base.html
	modified:   web/templates/group_admin/base.html
	modified:   web/templates/group_admin/dashboard.html
	modified:   web/templates/group_admin/database.html
	modified:   web/templates/group_admin/member_edit.html
	modified:   web/templates/group_admin/members.html
	modified:   web/templates/panel/no_db.html
This commit is contained in:
SimolZimol
2026-04-01 02:55:32 +02:00
parent 93999d1c0d
commit c9c684f97a
21 changed files with 4633 additions and 184 deletions

View File

@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="de" data-bs-theme="dark">
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -16,7 +16,7 @@
<div class="text-center mb-4">
<i class="bi bi-shield-fill-check fs-1 text-danger"></i>
<h3 class="fw-bold mt-2">Site Admin</h3>
<p class="text-muted small">Administrativer Zugang</p>
<p class="text-muted small">Administrative Access</p>
</div>
{% with messages = get_flashed_messages(with_categories=true) %}
@@ -31,7 +31,7 @@
<div class="card-body">
<form method="post">
<div class="mb-3">
<label class="form-label">Benutzername</label>
<label class="form-label">Username</label>
<div class="input-group">
<span class="input-group-text text-danger"><i class="bi bi-person-fill"></i></span>
<input type="text" name="username" class="form-control" required autofocus
@@ -39,7 +39,7 @@
</div>
</div>
<div class="mb-3">
<label class="form-label">Passwort</label>
<label class="form-label">Password</label>
<div class="input-group">
<span class="input-group-text text-danger"><i class="bi bi-lock-fill"></i></span>
<input type="password" name="password" class="form-control" required>
@@ -54,7 +54,7 @@
<div class="text-center mt-3">
<a href="{{ url_for('auth.login') }}" class="text-muted small">
<i class="bi bi-arrow-left me-1"></i>Zurück zum normalen Login
<i class="bi bi-arrow-left me-1"></i>Back to regular login
</a>
</div>
</div>

View File

@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="de" data-bs-theme="dark">
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -31,7 +31,7 @@
<div class="card-body">
<form method="post">
<div class="mb-3">
<label class="form-label">Benutzername</label>
<label class="form-label">Username</label>
<div class="input-group">
<span class="input-group-text"><i class="bi bi-person-fill"></i></span>
<input type="text" name="username" class="form-control" required autofocus
@@ -39,14 +39,14 @@
</div>
</div>
<div class="mb-3">
<label class="form-label">Passwort</label>
<label class="form-label">Password</label>
<div class="input-group">
<span class="input-group-text"><i class="bi bi-lock-fill"></i></span>
<input type="password" name="password" class="form-control" required>
</div>
</div>
<button type="submit" class="btn btn-success w-100">
<i class="bi bi-box-arrow-in-right me-1"></i> Einloggen
<i class="bi bi-box-arrow-in-right me-1"></i> Login
</button>
</form>
</div>