style(auth): update form placeholders to french localization

This commit is contained in:
2026-04-23 19:38:16 -04:00
parent d3bde53762
commit 4b27c1efea
3 changed files with 4 additions and 4 deletions
@@ -151,7 +151,7 @@ export default function RegisterPage({ onSubmit, onNavigate, currentUser = null
label="Nom complet"
value={formData.name}
onChange={(value) => setFormData(prev => ({ ...prev, name: value }))}
placeholder="John Doe"
placeholder="Lou Doe"
disabled={!!success || !!currentUser}
maxLength="100"
autoComplete="name"
@@ -165,7 +165,7 @@ export default function RegisterPage({ onSubmit, onNavigate, currentUser = null
label="E-mail"
value={formData.email}
onChange={(value) => setFormData(prev => ({ ...prev, email: value }))}
placeholder="your@email.com"
placeholder="votre@courriel.com"
disabled={!!success || !!currentUser}
maxLength="254"
autoComplete="email"