2020-08-03 12:04:07 +02:00
|
|
|
import { useState } from 'react'
|
|
|
|
import htmlParser from 'html-react-parser'
|
|
|
|
import Loader from '../../components/Loader'
|
|
|
|
import HeadTag from '../../components/HeadTag'
|
|
|
|
import api from '../../utils/api'
|
|
|
|
import withoutAuth from '../../hoc/withoutAuth'
|
|
|
|
import '../../public/css/pages/register-login.css'
|
2020-03-25 18:22:03 +01:00
|
|
|
|
|
|
|
const Register = () => {
|
2020-08-03 12:04:07 +02:00
|
|
|
const [inputState, setInputState] = useState({ name: '', email: '', password: '' })
|
|
|
|
const [message, setMessage] = useState('')
|
|
|
|
const [isLoading, setIsLoading] = useState(false)
|
2020-03-25 18:22:03 +01:00
|
|
|
|
2020-08-03 12:04:07 +02:00
|
|
|
const handleChange = (event) => {
|
|
|
|
const inputStateNew = { ...inputState }
|
|
|
|
inputStateNew[event.target.name] = event.target.value
|
|
|
|
setInputState(inputStateNew)
|
|
|
|
}
|
2020-03-25 18:22:03 +01:00
|
|
|
|
2020-08-03 12:04:07 +02:00
|
|
|
const handleSubmit = (event) => {
|
|
|
|
setIsLoading(true)
|
|
|
|
event.preventDefault()
|
|
|
|
api.post('/users/register', inputState)
|
|
|
|
.then(({ data }) => {
|
|
|
|
setInputState({ name: '', email: '', password: '' })
|
|
|
|
setMessage(`<p class="form-success"><b>Succès:</b> ${data.result}</p>`)
|
|
|
|
setIsLoading(false)
|
|
|
|
})
|
|
|
|
.catch((error) => {
|
|
|
|
setMessage(`<p class="form-error"><b>Erreur:</b> ${error.response.data.message}</p>`)
|
|
|
|
setIsLoading(false)
|
|
|
|
})
|
|
|
|
}
|
2020-03-25 18:22:03 +01:00
|
|
|
|
2020-08-03 12:04:07 +02:00
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<HeadTag
|
|
|
|
title="S'inscrire - FunctionProject"
|
|
|
|
description='Créer un compte.'
|
|
|
|
/>
|
|
|
|
<div className='container Register-Login__container'>
|
|
|
|
<div className='row Register-Login__row justify-content-center'>
|
|
|
|
<div className='col-20'>
|
|
|
|
<h1 className='Register-Login__title'>S'inscrire</h1>
|
|
|
|
<div className='text-center'>
|
|
|
|
<p>En vous inscrivant, vous accéderez à de nombreuses fonctionnalités : publier des commentaires, ajouter des fonctions aux favoris, utiliser certaines fonctions disponibles qu'aux membres (exemple: La To Do list) etc.</p>
|
|
|
|
</div>
|
|
|
|
<form onSubmit={handleSubmit}>
|
|
|
|
<div className='form-group'>
|
|
|
|
<label className='form-label' htmlFor='name'>Nom :</label>
|
|
|
|
<input value={inputState.name} onChange={handleChange} type='text' name='name' id='name' className='form-control' placeholder='Divlo' />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className='form-group'>
|
|
|
|
<label className='form-label' htmlFor='name'>Email :</label>
|
|
|
|
<input value={inputState.email} onChange={handleChange} type='email' name='email' id='email' className='form-control' placeholder='email@gmail.com' />
|
|
|
|
</div>
|
2020-03-25 18:22:03 +01:00
|
|
|
|
2020-08-03 12:04:07 +02:00
|
|
|
<div className='form-group'>
|
|
|
|
<label className='form-label' htmlFor='name'>Mot de passe :</label>
|
|
|
|
<input value={inputState.password} onChange={handleChange} type='password' name='password' id='password' className='form-control' placeholder='******' />
|
|
|
|
</div>
|
2020-03-25 18:22:03 +01:00
|
|
|
|
2020-08-03 12:04:07 +02:00
|
|
|
<div className='form-group text-center'>
|
|
|
|
<button type='submit' className='btn btn-dark'>Envoyer</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<div className='form-result text-center'>
|
|
|
|
{
|
|
|
|
(isLoading)
|
|
|
|
? <Loader />
|
|
|
|
: htmlParser(message)
|
|
|
|
}
|
2020-03-25 18:22:03 +01:00
|
|
|
</div>
|
2020-08-03 12:04:07 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</>
|
|
|
|
)
|
2020-03-25 18:22:03 +01:00
|
|
|
}
|
2020-08-03 12:04:07 +02:00
|
|
|
export default withoutAuth(Register)
|