style(login): placeholder labels instead of field headers

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-13 16:39:06 -04:00
parent ce43a3900b
commit fd9c6d941d
+2 -4
View File
@@ -23,12 +23,10 @@
{% endif %}
<form method="post" action="/login">
<div class="form-group">
<label>Username</label>
<input type="text" name="username" autofocus required>
<input type="text" name="username" placeholder="Username" autofocus required>
</div>
<div class="form-group">
<label>Password</label>
<input type="password" name="password" required>
<input type="password" name="password" placeholder="Password" required>
</div>
<button type="submit" class="btn {% if oidc_enabled %}btn-ghost{% endif %}" style="width:100%;">
Sign In