Maj Section Général
This commit is contained in:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user