|
|
@ -15,22 +15,25 @@
|
|
|
|
<main class="container mt-4">
|
|
|
|
<main class="container mt-4">
|
|
|
|
<h1>Publier Une Offre</h1>
|
|
|
|
<h1>Publier Une Offre</h1>
|
|
|
|
|
|
|
|
|
|
|
|
<form style="background-color: #00DBFF" class="p-4" enctype="multipart/form-data" action="index.php?action=publierOffre" method="post">
|
|
|
|
<form style="background-color: #00DBFF" class="p-4" enctype="multipart/form-data" action="index.php?action=creerOffre" method="post">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p> {{errMsg}}</p>
|
|
|
|
|
|
|
|
|
|
|
|
<p>Les champs contenant des astrérisques * sont obligatoires.</p>
|
|
|
|
<p>Les champs contenant des astrérisques * sont obligatoires.</p>
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="name">Intitulé de l'offre*</label>
|
|
|
|
<label for="name">Intitulé de l'offre*</label>
|
|
|
|
<input type="text" class="form-control" id="name" name="name" placeholder="Intitulé">
|
|
|
|
<input type="text" class="form-control" id="name" name="name" placeholder="Intitulé" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="entreprise">Nom de l'entreprise :*</label>
|
|
|
|
<label for="entreprise">Nom de l'entreprise :*</label>
|
|
|
|
<input type="text" class="form-control" id="entreprise" name="entreprise" placeholder="Entreprise">
|
|
|
|
<input type="text" class="form-control" id="entreprise" name="entreprise" placeholder="Entreprise" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="description">Description*</label>
|
|
|
|
<label for="description">Description*</label>
|
|
|
|
<textarea class="form-control" id="description" name="description" placeholder="Description rapide"></textarea>
|
|
|
|
<textarea class="form-control" id="description" name="description" placeholder="Description rapide" required></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-check">
|
|
|
|
<div class="form-check">
|
|
|
@ -40,13 +43,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="ville">Ville</label>
|
|
|
|
<label for="ville">Ville</label>
|
|
|
|
<input type="text" class="form-control" id="ville" name="ville" placeholder="Ville">
|
|
|
|
<input type="text" class="form-control" id="ville" name="ville" placeholder="Ville" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="choixContrat">Choisissez un type de contrat :*</label>
|
|
|
|
<label for="choixContrat">Choisissez un type de contrat :*</label>
|
|
|
|
<select class="form-control" id="choixContrat" name="typeContrat">
|
|
|
|
<select class="form-control" id="choixContrat" name="typeContrat">
|
|
|
|
<option value="CDI">CDI</option>
|
|
|
|
<option value="CDI" selected>CDI</option>
|
|
|
|
<option value="CDD">CDD</option>
|
|
|
|
<option value="CDD">CDD</option>
|
|
|
|
<option value="Alternance">Alternance</option>
|
|
|
|
<option value="Alternance">Alternance</option>
|
|
|
|
<option value="Stage">Stage</option>
|
|
|
|
<option value="Stage">Stage</option>
|
|
|
@ -55,20 +58,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="descriptPoste">Descriptif du Poste :*</label>
|
|
|
|
<label for="descriptPoste">Descriptif du Poste :*</label>
|
|
|
|
<textarea class="form-control" id="descriptPoste" name="descriptPoste" placeholder="Description du Poste"></textarea>
|
|
|
|
<textarea class="form-control" id="descriptPoste" name="descriptPoste" placeholder="Description du Poste" required></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="profilRecherche">Profil Recherché :*</label>
|
|
|
|
<label for="profilRecherche">Profil Recherché :*</label>
|
|
|
|
<textarea class="form-control" id="profilRecherche" name="profilRecherche" placeholder="Profil recherché"></textarea>
|
|
|
|
<textarea class="form-control" id="profilRecherche" name="profilRecherche" placeholder="Profil recherché" required></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="choixExp">Experience Recherchée :*</label>
|
|
|
|
<label for="choixExp">Experience Recherchée :*</label>
|
|
|
|
<select class="form-control" id="choixExp" name="choixExp">
|
|
|
|
<select class="form-control" id="choixExp" name="choixExp" required>
|
|
|
|
|
|
|
|
<option value="Indifférent" selected>Indifferent</option>
|
|
|
|
<option value="Junior">Junior</option>
|
|
|
|
<option value="Junior">Junior</option>
|
|
|
|
<option value="Senior">Senior</option>
|
|
|
|
<option value="Senior">Senior</option>
|
|
|
|
<option value="Indifférent">Indifferent</option>
|
|
|
|
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
@ -93,28 +96,25 @@
|
|
|
|
<label class="form-check-label" for="bac8">Bac +5</label>
|
|
|
|
<label class="form-check-label" for="bac8">Bac +5</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="mail">Email de contact :*</label>
|
|
|
|
<label for="mail">Email de contact :*</label>
|
|
|
|
<input type="text" class="form-control" id="mail" name="mail" placeholder="Adresse de contact">
|
|
|
|
<input type="text" class="form-control" id="mail" name="mail" placeholder="Adresse de contact" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="num">Numero de contact :*</label>
|
|
|
|
<label for="num">Numero de contact :*</label>
|
|
|
|
<input type="text" class="form-control" id="num" name="num" placeholder="Numéro de contact">
|
|
|
|
<input type="text" class="form-control" id="num" name="num" placeholder="Numéro de contact" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="site">Site web de l'annonce ou entreprise :</label>
|
|
|
|
<label for="site">Site web de l'annonce ou entreprise :</label>
|
|
|
|
<input type="text" class="form-control" id="site" name="site" placeholder="Adresse web">
|
|
|
|
<input type="text" class="form-control" id="site" name="site" placeholder="Adresse web" required>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<input type="file" name="image" id="image">
|
|
|
|
<input type="file" name="image" id="image" required>
|
|
|
|
<input type="submit" value="Publier L'annonce" name="submit" id="submit">
|
|
|
|
<input type="submit" value="Publier L'annonce" name="submit" id="submit">
|
|
|
|
|
|
|
|
|
|
|
|
</form>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</main>
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- scripts : -->
|
|
|
|
<!-- scripts : -->
|
|
|
|