generated from WildCodeSchool/create-js-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from WildCodeSchool/routes
Routes
- Loading branch information
Showing
11 changed files
with
75 additions
and
69 deletions.
There are no files selected for viewing
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
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,18 +1,23 @@ | ||
import "./header.css"; | ||
import PropTypes from "prop-types"; | ||
|
||
function HeaderLongTitreSsTitre() { | ||
function HeaderLongTitreSsTitre({ title, subTitle }) { | ||
return ( | ||
<header className="header with-round-bottom"> | ||
<nav> | ||
<i className="fa-solid fa-arrow-left" /> | ||
<i className="fa-solid fa-bars" /> | ||
</nav> | ||
<div className="header-content title-and-sub-title"> | ||
<h1>Candidatures</h1> | ||
<h2>Historique</h2> | ||
<h1>{title}</h1> | ||
<h2>{subTitle}</h2> | ||
</div> | ||
</header> | ||
); | ||
} | ||
HeaderLongTitreSsTitre.propTypes = { | ||
title: PropTypes.string.isRequired, | ||
subTitle: PropTypes.string.isRequired, | ||
}; | ||
|
||
export default HeaderLongTitreSsTitre; |
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
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
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,3 +1,4 @@ | ||
import { Link } from "react-router-dom"; | ||
import Input from "../../components/Inputs/Input"; | ||
import ButtonMaxi from "../../components/Boutons/ButtonMaxi"; | ||
import "./login-signin.css"; | ||
|
@@ -16,14 +17,19 @@ function Login() { | |
<div> | ||
<Input titleInput="E-mail" holderText="[email protected]" /> | ||
<Input titleInput="Mot de passe" holderText="************" /> | ||
<ButtonMaxi textBtn="Se connecter" /> | ||
<Link to="/"> | ||
<ButtonMaxi textBtn="Se connecter" /> | ||
</Link> | ||
</div> | ||
</div> | ||
</form> | ||
|
||
<div className="small-paragraphe-info"> | ||
<p> | ||
Vous n'avez pas de compte ? <span> Inscrivez-vous ! </span> | ||
Vous n'avez pas de compte ? | ||
<Link to="/signin"> | ||
<span>Inscrivez-vous !</span> | ||
</Link> | ||
</p> | ||
</div> | ||
</div> | ||
|
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
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
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
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
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
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