Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

page offre #30

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 47 additions & 9 deletions frontend/src/pages/Offer/Offer.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import ButtonMaxi from "../../components/Boutons/ButtonMaxi";
import Date from "../../components/Inputs/Date";
import Input from "../../components/Inputs/Input";
import Select from "../../components/Inputs/Select";
import TextArea from "../../components/Inputs/TextArea";
Expand All @@ -11,20 +10,59 @@ function Offer() {
<HeaderCourt />
<div className="container-page with-rounded-border">
<h1>Ajouter une offre</h1>
<Select titleSelect="Niveau d'étude *" valueSelect="Master 2" />
<Select titleSelect="Domaine *" />
<Input
titleInput="Nom de l'établissement *"
showInput
titleInput="Titre de l'offre"
holderText="Développeur Web"
inputType="text"
/>
<Input
showInput
titleInput="Société"
holderText="BackMarket"
inputType="text"
/>
<Select titleSelect="Type de contrat" valueSelect="CDI" />
<Input
showInput
titleInput="Ville"
holderText="Bordeaux"
inputType="text"
/>
<TextArea
titleInput="Missions"
holderText="1 rue Victor Hugo, 33300 Bordeaux"
/>
<Input
showInput
titleInput="Profil recherché"
holderText="Sup de pub"
inputType="text"
/>
<Date titleCalendar="Date de début *" />
<Date titleCalendar="Date de fin *" />
<Input
showInput
titleInput="Lieux de travail"
holderText="Présentiel"
inputType="text"
/>
<Input
showInput
titleInput="Salaire"
holderText="100k"
inputType="text"
/>
<TextArea
titleInput="Description de la formation *"
holderText="Lorem ipsum dolor si amet"
titleInput="Infos complémentaires"
holderText=" Le travail est cool"
/>

<Input
showInput
titleInput="Email du client lié à l'offre"
holderText="Votre email"
inputType="email"
/>
<ButtonMaxi textBtn="Ajouter une formation" />
<ButtonMaxi textBtn="Ajouter l'offre" />
</div>
</div>
);
Expand Down