-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
57 lines (57 loc) · 2.68 KB
/
Copy pathcontact.php
File metadata and controls
57 lines (57 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Global Tech - Contact</title>
</head>
<body>
<div class="box">
<?php include('entete.php'); ?>
</div>
<main>
<div class="arriere-plan">
<div class="box-form">
<div class="form">
<form method="get" action="">
<fieldset>
<legend >Envoyez nous un mail</legend> <!-- Titre du fieldset -->
<div class="formulaire">
<div class="formulaire-droite">
<div>
<br><label for="prenom">Votre prénom </label> <br>
<input type="text" name="prenom" id="prenom" placeholder="" . maxlength="20" required><br> <br>
</div>
<div>
<label for="nom">Votre nom </label> <br>
<input type="text" name="nom" id="nom" placeholder="" . maxlength="20" required><br> <br>
</div>
</div>
<div class="formulaire-gauche">
<div>
<br><label for="mail">Votre email </label> <br>
<input type="email" name="mail" id="mail" placeholder="" . required ><br> <br>
</div>
<div>
<label for="message">Votre message </label> <br>
<textarea name="message" id="message" .></textarea><br> <br>
</div>
</div>
</div>
<div class="envoyer">
<input class="envoyer" type="submit" value="Envoyer">
</div>
</fieldset>
</form>
</div>
</div>
</div>
</main>
<?php include('pieddepage.php');?>
</body>
</html>