2 Commits

Author SHA1 Message Date
smueller
2bc0a19ada Merge branch 'dev'
All checks were successful
Docker Image bauen & veröffentlichen / build-and-push (push) Successful in 40s
2026-07-07 15:18:19 +02:00
smueller
9c75357150 Update login form to remove email placeholder
- Removed the placeholder text from the email input field in the login form for a cleaner user interface.
2026-07-07 15:17:55 +02:00

View File

@@ -11,7 +11,7 @@
<form method="post" action="/login" class="form-grid">
<input type="hidden" name="csrf_token" value="{{ csrf_token }}">
<label>E-Mail
<input type="email" name="email" required autocomplete="username" placeholder="name@firma.de">
<input type="email" name="email" required autocomplete="username">
</label>
<label>Passwort
<input type="password" name="password" required autocomplete="current-password">