-
Notifications
You must be signed in to change notification settings - Fork 3
/
form.html
50 lines (41 loc) · 1.6 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Formulaire de réclamation</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>Formulaire de réclamation</h1>
<img src="images/logo_dunder.png" alt="Logo Dunder Mifflin">
</header>
<main>
<p>Pour toute plainte concernant votre commande de papier, veuillez s'il vous plait remplir le formulaire suivant.</p>
<form action="result.php" method="post">
<p>
<label for="companyName">Nom de votre entreprise : </label>
<input type="text" id="companyName" name="companyName" required="true">
</p>
<!--TODO 1 - Add the missing fields-->
<p>
<label for="contactName">Votre nom : </label>
<input type="text" id="contactName" name="contactName" required="true">
</p>
<p>
<label for="contactEmail">Votre email : </label>
<input type="email" id="contactEmail" name="contactEmail" required="true">
</p>
<p>
<label for="contactMessage">Votre message : </label>
<textarea name="contactMessage" id="contactMessage" rows="10"></textarea>
</p>
<p id="buttonsLine">
<button type="submit">Envoyer <img src="images/mail.png"></button>
</p>
</form>
</main>
</body>
</html>