-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
86 lines (73 loc) · 2.42 KB
/
contact.php
File metadata and controls
86 lines (73 loc) · 2.42 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
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
<?php include("../phpinc/includes/connexionDB.php"); ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/static-menu.css">
<link rel="stylesheet" href="css/main-content-contact.css">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web|Patua+One|Lato|Palanquin+Dark|Open+Sans" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contatez-nous</title>
</head>
<body>
<div class="entire-body">
<header class="header-wrapper">
<h1 class="header-text">atou'ce</h1>
<div class="logo-wrapper">
<img src="images/atouce.png" alt="logo atouce"/>
</div>
</header>
<nav class="menu">
<div class="menu-button">
<a class="threelines-button" href="#menu">
</a>
</div>
<ul>
<?php
$menu_request = 'SELECT * FROM menu';
foreach($db->query($menu_request) as $row) {
?>
<li>
<a href='<?php echo $row["link"]; ?>'>
<p>
<?php echo $row['name']; ?>
</p>
</a>
</li>
<?php
}
?>
</ul>
</nav>
<div class="page-wrapper">
<div class="contact-backgr">
<h1 class="contact-title">Contactez-nous</h1>
</div>
<form action="/action_page.php">
<input type="text" name="nom" id="nom" placeholder="Nom">
<input type="text" name="prenom" id="prenom" placeholder="Prenom">
<input type="text" name="mail" id="mail" placeholder="Adresse e-mail">
<textarea rows="10" cols="60"></textarea>
<input type="submit" value="Submit">
</form>
</div>
<footer>
<div class="mini-footer">
<ul>
<li>NOM DU CE</li>
<li>Adresse</li>
<li>Ville</li>
<li>Téléphone</li>
</ul>
<p class="mini-foot-r">atou'CE, un produit atoucom</p>
</div>
</footer>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="js/mobile-menu.js"></script>
<script src="js/page-docs.js"></script>
</body>
</html>