-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
148 additions
and
166 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,58 @@ | ||
import React from 'react' | ||
import styles from '../styles.module.css' | ||
import FeatherIcon from 'feather-icons-react' | ||
|
||
const Login = () => { | ||
return( | ||
'Login' | ||
) | ||
} | ||
return ( | ||
<div className={'container ' + styles.formContainer}> | ||
<div className={'row ' + styles.w_full}> | ||
<div className='col-xl-5 col-lg-6 col-md-8 col-sm-10 m-auto'> | ||
<div className={'p-sm-5 py-5 px-4 ' + styles.formLoginRegister}> | ||
<span className={'mb-sm-5 mb-3 ' + styles.formLoginRegisterTitle}> | ||
Connectez-vous | ||
</span> | ||
<div className='form-group position-relative'> | ||
<span className={styles.formLoginRegisterPrepend}> | ||
<FeatherIcon icon='mail' /> | ||
</span> | ||
<input | ||
type='email' | ||
className={'form-control ' + styles.formLoginRegisterInput} | ||
placeholder='Adresse mail' | ||
/> | ||
</div> | ||
<div className='form-group position-relative'> | ||
<span className={styles.formLoginRegisterPrepend}> | ||
<FeatherIcon icon='lock' /> | ||
</span> | ||
<input | ||
type='password' | ||
className={'form-control ' + styles.formLoginRegisterInput} | ||
placeholder='Mot de passe' | ||
/> | ||
</div> | ||
<a className={styles.formLoginRegisterForgotPasswordLink} href='#'> | ||
Mot de passe oublié ? | ||
</a> | ||
|
||
export default Login; | ||
<button | ||
className={'mt-5 mb-4 ' + styles.formLoginRegisterbtnPrimary} | ||
> | ||
Connexion | ||
</button> | ||
<p className={' ' + styles.formLoginRegisterFooter}> | ||
Pas encore de compte ? | ||
<a | ||
href='#' | ||
className={'ml-1 ' + styles.formLoginRegisterFooterLink} | ||
> | ||
s’inscrire | ||
</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
export default Login |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,96 @@ | ||
import React from 'react' | ||
import styles from '../styles.module.css' | ||
import FeatherIcon from 'feather-icons-react' | ||
|
||
const Register = () => { | ||
return( | ||
'Register' | ||
) | ||
} | ||
return ( | ||
<div className={'container ' + styles.formContainer}> | ||
<div className={'row py-5 ' + styles.w_full}> | ||
<div className='col-xl-5 col-lg-6 col-md-8 col-sm-10 m-auto'> | ||
<div className={'p-sm-5 py-5 px-4 ' + styles.formLoginRegister}> | ||
<span className={'mb-sm-5 mb-3 ' + styles.formLoginRegisterTitle}> | ||
Inscrivez-vous | ||
</span> | ||
<div className='form-group position-relative'> | ||
<span className={styles.formLoginRegisterPrepend}> | ||
<FeatherIcon icon='user' /> | ||
</span> | ||
<input | ||
type='text' | ||
className={'form-control ' + styles.formLoginRegisterInput} | ||
placeholder='Prénom' | ||
/> | ||
</div> | ||
<div className='form-group position-relative'> | ||
<span className={styles.formLoginRegisterPrepend}> | ||
<FeatherIcon icon='user' /> | ||
</span> | ||
<input | ||
type='text' | ||
className={'form-control ' + styles.formLoginRegisterInput} | ||
placeholder='Nom' | ||
/> | ||
</div> | ||
<div className='form-group position-relative'> | ||
<span className={styles.formLoginRegisterPrepend}> | ||
<FeatherIcon icon='user' /> | ||
</span> | ||
<input | ||
type='text' | ||
className={'form-control ' + styles.formLoginRegisterInput} | ||
placeholder='Prénom & Nom' | ||
/> | ||
</div> | ||
<div className='form-group position-relative'> | ||
<span className={styles.formLoginRegisterPrepend}> | ||
<FeatherIcon icon='mail' /> | ||
</span> | ||
<input | ||
type='email' | ||
className={'form-control ' + styles.formLoginRegisterInput} | ||
placeholder='Adresse mail' | ||
/> | ||
</div> | ||
<div className='form-group position-relative'> | ||
<span className={styles.formLoginRegisterPrepend}> | ||
<FeatherIcon icon='lock' /> | ||
</span> | ||
<input | ||
type='password' | ||
className={'form-control ' + styles.formLoginRegisterInput} | ||
placeholder='Mot de passe' | ||
/> | ||
</div> | ||
<div className='form-group position-relative'> | ||
<span className={styles.formLoginRegisterPrepend}> | ||
<FeatherIcon icon='lock' /> | ||
</span> | ||
<input | ||
type='password' | ||
className={'form-control ' + styles.formLoginRegisterInput} | ||
placeholder='Confirmer mot de passe' | ||
/> | ||
</div> | ||
|
||
|
||
export default Register; | ||
<button | ||
className={'mt-5 mb-4 ' + styles.formLoginRegisterbtnPrimary} | ||
> | ||
Inscription | ||
</button> | ||
<p className={' ' + styles.formLoginRegisterFooter}> | ||
Déja inscrit? | ||
<a | ||
href='#' | ||
className={'ml-1 ' + styles.formLoginRegisterFooterLink} | ||
> | ||
se connecter | ||
</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
export default Register |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters