61 lines
2.6 KiB
HTML
61 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="fr">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
|
||
<title>Demander une convention </title>
|
||
</head>
|
||
|
||
<body>
|
||
<div class="w3-bar w3-black">
|
||
<a href="#" class="w3-bar-item w3-button">Accueil</a>
|
||
<a href="#" class="w3-bar-item w3-button">Déposer une offre</a>
|
||
<a href="#" class="w3-bar-item w3-button">Consulter les offres</a>
|
||
<a href="#" class="w3-bar-item w3-button">Demander une convention</a>
|
||
</div>
|
||
|
||
<button class="w3-button w3-xlarge w3-topleft"><a href="../sombre/convention.html"><img src="ModeSbr.jpg">Mode sombre</a></button>
|
||
|
||
<div class="w3-card-4 w3-twothird w3-padding-32 w3-display-middle w3-center">
|
||
<div id="depot-offre" class="w3-container w3-mobile">
|
||
<h1>Demander une convention </h1>
|
||
</div>
|
||
|
||
<br>
|
||
|
||
|
||
<form class="w3-container w3-padding-32" method="" action="">
|
||
|
||
<label>S’agit-il d’un stage de 10 à 14 semaines ? <label>
|
||
<input class="w3-radio" type="radio" name="semaine" value="" checked>
|
||
<label>oui</label>
|
||
<input class="w3-radio" type="radio" name="semaine" value="" checked>
|
||
<label>non</label>
|
||
|
||
<br><br>
|
||
<label>Le stage est-il rémunéré ? <label>
|
||
<input class="w3-radio" type="radio" name="remunerer" value="" checked>
|
||
<label>oui</label>
|
||
<input class="w3-radio" type="radio" name="remunerer" value="" checked>
|
||
<label>non</label>
|
||
<br><br>
|
||
<label>Professeur tuteur</label>
|
||
<br>
|
||
<select name="prof" id="">
|
||
<option value="">--Choisir un professeur--</option>
|
||
<option value="Denis">Denis Monnerat</option>
|
||
<option value="">Pierre Valarcher</option>
|
||
<option value="">Luc Dartois</option>
|
||
</select>
|
||
<button type="reset"
|
||
class="w3-button w3-blue-grey w3-display-bottommiddle w3-margin-bottom w3-margin-top">Soumettre</button>
|
||
</form>
|
||
<br><br>
|
||
</div>
|
||
|
||
</body>
|
||
|
||
</html> |