Maj Section Général

This commit is contained in:
2026-06-15 23:03:37 +02:00
parent 01526a5551
commit 032a370e7d
15 changed files with 492 additions and 57 deletions
+3 -3
View File
@@ -186,14 +186,14 @@ export default function ResetPassword() {
</label>
<input
className="form-input"
type="password" required minLength={8}
type="password" required minLength={appInfo.minPasswordLength || 8}
autoComplete="new-password"
placeholder="••••••••"
value={password}
onChange={e => { setPassword(e.target.value); setStatus(null); }}
style={{ width: '100%' }}
/>
<PasswordStrength password={password} />
<PasswordStrength password={password} minLength={appInfo.minPasswordLength || 8} />
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: 6 }}>
@@ -202,7 +202,7 @@ export default function ResetPassword() {
</label>
<input
className="form-input"
type="password" required minLength={8}
type="password" required minLength={appInfo.minPasswordLength || 8}
autoComplete="new-password"
placeholder="••••••••"
value={password2}