-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
48 lines (45 loc) · 2.54 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
<!DOCTYPE html>
<html lang="fr-FR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script defer src="index.js"></script>
<script defer src="contact.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="shortcut icon" href="Pokeball-18.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="contact.css">
<title>PokeGraph Manga|Contact</title>
</head>
<body>
<header id="header"></header>
<section class="haut"></section>
<main>
<div id="formContainer">
<div id="contact">
<h1>Contactez nous !</h1>
<p class="contactMessage"><i class="fa-solid fa-location-dot"></i> Batîment Le Galion <br> Siège social de la MAIF</p>
<p class="contactMessage"><i class="fa-solid fa-phone"></i> (+33) 0633557799</p>
<p class="contactMessage"><i class="fa-solid fa-at"></i> [email protected]</p>
</div>
<form id="form" method="get" action="#">
<label for="name">Nom:</label>
<input type="text" id="nameContact" name="user_name" class="formInput" placeholder="Entrez votre nom" required>
<label for="mail">E-mail:</label>
<input type="email" id="emailContact" name="user_mail" class="formInput" placeholder="[email protected]" required>
<label for="msg">Message:</label>
<textarea id="msg" name="user_message" placeholder="Ecrivez votre message ici" required></textarea>
<button type="submit" class="btn btn-light showPopup" value="Reset form">Envoyer</button>
<div id="popup">
<div id="popupContent">
<span id="closePopup"><i class="fa-solid fa-xmark"></i></span>
<p id="popupMessage">Votre message est bien envoyé. Nous reviendrons vers vous dans les plus brefs délais.</p>
</div>
</div>
</form>
</div>
</main>
<footer id="footer"></footer>
</body>
</html>