feat: add input placeholders to login form

This commit is contained in:
2026-05-26 23:13:07 +02:00
parent 91db8a5fe0
commit 95116de349

View File

@@ -17,6 +17,7 @@
type="text" type="text"
autocomplete="username" autocomplete="username"
spellcheck="false" spellcheck="false"
placeholder="you@example.com"
required required
value="{{.Username}}" value="{{.Username}}"
class="h-10 w-full bg-background-surface px-3 text-foreground outline-none transition focus:ring-1 focus:ring-accent rounded-none!" class="h-10 w-full bg-background-surface px-3 text-foreground outline-none transition focus:ring-1 focus:ring-accent rounded-none!"
@@ -33,6 +34,7 @@
name="password" name="password"
type="password" type="password"
autocomplete="current-password" autocomplete="current-password"
placeholder="Enter your password"
required required
class="min-w-0 flex-1 bg-transparent px-3 text-foreground outline-none rounded-none!" class="min-w-0 flex-1 bg-transparent px-3 text-foreground outline-none rounded-none!"
/> />