Add login page styles and refactor authentication views

- Introduced new styles for the login page, enhancing layout and responsiveness.
- Updated the login view to utilize the new styles and improve user feedback for login errors and success messages.
- Removed unused controllers and views related to contact and login functionalities to streamline the codebase.
- Adjusted error message handling in the AuthController for better clarity on password requirements.
This commit is contained in:
2025-06-30 14:01:08 +02:00
parent 71d838da0a
commit 6852923db0
12 changed files with 143 additions and 212 deletions

View File

@@ -76,7 +76,7 @@ class AuthController
}
if ($this->pwRequirementCheck($data['password'])) {
$errors
$errors['password'] = "Passwort muss mindestens 8 Zeichen lang sein und mindestens ein Großbuchstabe, ein Kleinbuchstabe, eine Zahl und ein Sonderzeichen enthalten.";
}
if (empty($errors)) {