forked from WildCodeSchool/workshop-php-claim-form
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
61 lines (54 loc) · 1.67 KB
/
form.html
File metadata and controls
61 lines (54 loc) · 1.67 KB
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
<!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">
<div>
<label for="companyName">Nom de votre entreprise : </label>
<input
type="text"
id="companyName"
name="companyName"
required="true"
/>
</div>
<!--TODO 1 - Add the missing fields-->
<div>
<label for="userName">Votre nom : </label>
<input type="text" id="userName" name="userName" required="true" />
</div>
<div>
<label for="userEmail">Votre email : </label>
<input type="email" id="userEmail" name="userEmail" required="true" />
</div>
<div>
<label for="contactMessage">Votre message : </label>
<textarea
name="contactMessage"
id="contactMessage"
rows="10"
required="true"
></textarea>
</div>
<div class="buttonsLine">
<button type="submit">Envoyer <img src="images/mail.png" /></button>
</div>
</form>
</main>
</body>
</html>