-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact-us.php
More file actions
91 lines (85 loc) · 4.19 KB
/
contact-us.php
File metadata and controls
91 lines (85 loc) · 4.19 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
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Contact | WebDev@CF2m</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/prettyPhoto.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57-precomposed.png">
</head><!--/head-->
<body>
<?php
include "header.php";
?>
<section id="title" class="pomegranate">
<div class="container">
<div class="row">
<div class="col-sm-6">
<h1>Contactez-nous !</h1>
<p>Contactez l'équipe des webdev de la promotion 2015-2016 !</p>
</div>
<div class="col-sm-6">
<ul class="breadcrumb pull-right">
<li><a href="index.php">Accueil</a></li>
<li class="active">Contact</li>
</ul>
</div>
</div>
</div>
</section><!--/#title-->
<section id="contact-page" class="container">
<div class="row">
<div class="col-sm-8">
<h4>Formulaire de contact</h4>
<div class="status alert alert-success" style="display: none"></div>
<form id="main-contact-form" class="contact-form" name="contact-form" method="post" action="sendemail.php" role="form">
<div class="row">
<div class="col-sm-5">
<div class="form-group">
<input type="text" class="form-control" required="required" placeholder="Prénom">
</div>
<div class="form-group">
<input type="text" class="form-control" required="required" placeholder="Nom">
</div>
<div class="form-group">
<input type="text" class="form-control" required="required" placeholder="Email">
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-lg">Envoyez votre message</button>
</div>
</div>
<div class="col-sm-7">
<textarea name="message" id="message" required="required" class="form-control" rows="8" placeholder="Message"></textarea>
</div>
</div>
</form>
</div><!--/.col-sm-8-->
<div class="col-sm-4">
<h4>Our Location</h4>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2520.306903489296!2d4.336445815917029!3d50.82547897952892!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47c3c4424e34c979%3A0x1a9531ce83e9a111!2sAvenue+du+Parc+89%2C+1060+Saint-Gilles!5e0!3m2!1sen!2sbe!4v1463579470247" width="100%" height="215" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" ></iframe>
</div><!--/.col-sm-4-->
</div>
</section><!--/#contact-page-->
<?php
include 'footer.php';
?>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.prettyPhoto.js"></script>
<script src="js/main.js"></script>
</body>
</html>