You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.4 KiB
67 lines
2.4 KiB
import React from 'react';
|
|
import { NavLink } from "react-router-dom";
|
|
|
|
|
|
|
|
const ConfigurationDuCompte =()=>{
|
|
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [controlPassword, setControlPassword] = useState('');
|
|
|
|
return(
|
|
<div>
|
|
<h2 className='ligneHorizontal'>Modifucation information du compte</h2>
|
|
|
|
<div className="ModifucationInformationDuCompte">
|
|
|
|
<div className='ModificationInformationDuCompteText'>
|
|
<span>email</span>
|
|
<span>mot de passe</span>
|
|
<span>comfirmation mot de passe</span>
|
|
</div>
|
|
|
|
<div className='ModificationInformationDuCompteText'>
|
|
|
|
<input type="text"
|
|
name="email"
|
|
id="email"
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
value={email}/>
|
|
<br />
|
|
<div className='email error'></div>
|
|
<input type="password"
|
|
name="password"
|
|
id="password"
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
value={password}/>
|
|
<br/>
|
|
<div className='password error'></div>
|
|
<input type="password"
|
|
name="password"
|
|
id="password-conf"
|
|
onChange={(e) => setControlPassword(e.target.value)}
|
|
value={controlPassword}/>
|
|
<div className='password error'></div>
|
|
</div>
|
|
</div>
|
|
<div />
|
|
<h2 className='ligneHorizontal'>Suppression du compte</h2>
|
|
<div className='buttonSuppressionCompte'>
|
|
|
|
<button>
|
|
supprimer votre compte
|
|
</button>
|
|
<span>gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg</span>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
|
|
|
|
|
|
export default ConfigurationDuCompte;
|
|
|
|
|