-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
115 lines (94 loc) · 3.62 KB
/
contact.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>Projet Terre de geek</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<script src="https://kit.fontawesome.com/6dd1f33a58.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<link rel="shortcut icon" type="image/png" href="img/favicon.png"/>
<meta name="theme-color" content="#fafafa">
</head>
<body>
<!-- Start header -->
<header>
<h1>Terre de Geek</h1>
<!-- Navigation -->
<nav>
<ul>
<li><a href="index.html"><i class="fas fa-home"></i>Acceuil</a></li>
<li><a href="apropos.html"><i class="fas fa-address-card"></i>À propos</a></li>
<li><a href="contact.html"><i class="fas fa-file-signature"></i>Contact</a></li>
<li><a href="prestation.html"><i class="fas fa-tools"></i>Préstation</a></li>
</ul>
</nav>
</header>
<section class="form">
<form action="traitement.php" method="POST">
<h2>Formulaire de contact</h2>
<div>
<label for="firstname">Prénom :</label>
<input type="text" name="firstname" id="firstname"/>
</div>
<div>
<label for="lastname">Nom :</label>
<input type="text" name="lastname" id="lastname" required/>
</div>
<div>
<label for="age">Votre âge :</label>
<input type="text" name="age" id="age"/>
</div>
<div>
<label for="phone">Téléphone :</label>
<input type="tel" name="phone" id="phone">
</div>
<div>
<label for="email">Votre email :</label>
<input type="email" name="email" id="email" required/>
</div>
<div>
<label for="context">Objet du message</label>
<select name="context" id="context" required>
<option value="info">Information</option>
<option value="claim">Réclamation</option>
<option value="partner">Partenariat</option>
<option value="other">Autre</option>
</select>
</div>
<div>
<label for="message">Ecrire votre message :</label>
<textarea name="message" id="message" cols="50" rows="15" required></textarea>
<input type="submit" value="Envoyer"/>
</div>
</form>
</section>
<!-- Start footer -->
<footer>
<!-- Legal mention with society name and adress -->
<div><h3>Mention légales</h3>
<ul class="mention">
<li><p>Terre de geek</p></li>
<li><p>Siège à Evreux 27000</p></li>
<li><p>Présent sur Dieppe, Forge-les-Eaux, Alençon et Louviers</p></li>
</ul>
</div>
</footer>
<script src="js/vendor/modernizr-3.11.2.min.js"></script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<!-- Google Analytics: change UA-XXXXX-Y to be your site's ID. -->
<script>
window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date;
ga('create', 'UA-XXXXX-Y', 'auto'); ga('set', 'anonymizeIp', true); ga('set', 'transport', 'beacon'); ga('send', 'pageview')
</script>
<script src="https://www.google-analytics.com/analytics.js" async></script>
</body>
</html>