Règle de gestion des mots de passe

This commit is contained in:
2026-06-15 22:44:17 +02:00
parent ceda5bcf1b
commit 01526a5551
6 changed files with 105 additions and 1 deletions
+2
View File
@@ -1,5 +1,6 @@
import { useState, useEffect } from 'react';
import { Link, useNavigate, useSearchParams } from 'react-router-dom';
import PasswordStrength from '../components/PasswordStrength.jsx';
export default function ResetPassword() {
const [params] = useSearchParams();
@@ -192,6 +193,7 @@ export default function ResetPassword() {
onChange={e => { setPassword(e.target.value); setStatus(null); }}
style={{ width: '100%' }}
/>
<PasswordStrength password={password} />
</div>
<div style={{ display: 'flex', flexDirection: 'column', gap: 6 }}>