-
Notifications
You must be signed in to change notification settings - Fork 0
/
covoiturage-depot.html
85 lines (77 loc) · 2.9 KB
/
covoiturage-depot.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<html lang="fr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="style.css" rel="stylesheet">
<title>Covoit'</title>
</head>
<body>
<header>
<nav>
<a href="index.html"><img class="logo" src="img/Covoit.png"></a>
<ul class="dropdownmenu">
<li><a href="#">Location:</a>
<ul>
</li>
<li><a href="location-avec-permis.html">Avec permis</a></li>
<li><a href="location-sans-permis.html">Sans Permis</a></li>
</ul>
</li>
<li><a href="#">Covoiturage:</a>
<ul>
</li>
<li><a href="covoiturage-depot.html">Depot d'annonce</a></li>
<li><a href="covoiturage-disponible.html">Page des annonces</a></li>
</ul>
</li>
</ul>
<a href="profile.html"><img class="profile" src="img/profile.svg"></a>
</nav>
</header>
<main class="form">
<!-- Contenu de la page -->
<h1>Depôt d'annonce</h1>
<form action="" method="get" class="form-example">
<div class="form-example">
<label for="name">Titre: </label>
<br>
<input required>
</div>
<div class="form-example">
<label for="name">Depart:</label>
<br>
<input required>
</div>
<div class="form-example">
<label for="name">Arrivé:</label>
<br>
<input required>
</div>
<div class="form-example">
<label for="name">Description:</label>
<br>
<textarea id="Description" name="Description" rows="5" cols="33">Detail à ajouter sur ce trajet</textarea>
</div>
<div class="form-example">
<label for="name">Prix:</label>
<br>
<input required>
</div>
<div class="form-example">
<input type="submit" value="Envoyer">
</div>
</form>
<img class="map" src="img/map.png">
<!-- Contenu de la page -->
</main>
<footer>
<img class="ulille" src="img/logo-ULille.c143519b.png">
<div>
<p>
<a href="reglement.html">Régles</a> <br>
<p>Copyright © 2020 - 2021 Université de Lille</p>
</p>
</div>
</footer>
</body>
</html>