-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
158 lines (147 loc) · 5.9 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Créaphé</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link href='http://fonts.googleapis.com/css?family=Lato:300italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="static/css/font-awesome.min.css">
<link rel="stylesheet" href="static/css/styles.css">
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script>
function initialize() {
var mapCanvas = document.getElementById('map-canvas');
var locations = new google.maps.LatLng(50.633333, 3.066667);
var mapOptions = {
center: locations,
zoom: 14,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(mapCanvas, mapOptions)
var marker = new google.maps.Marker({
position: locations,
map: map,
title:"Lille"});
marker.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">
<img src="static/img/logo.png">
</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="about.html">Notre projet</a></li>
<li><a href="funding.html">Nous soutenir</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Projets
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Ateliers</a></li>
<li><a href="#">Formations</a></li>
</ul>
</li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">Communauté
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="#">Artistes et artisans</a></li>
<li><a href="#">Boutique</a></li>
</ul>
</li>
<li><a href="blog.html">Blog</a></li>
<li><a href="join.html">Inscription</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-sm-6">
<form class="form-horizontal" role="form" method="post" action="TODO">
<div class="form-group">
<label for="name" class="col-sm-2 control-label">Nom</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="name" name="name" placeholder="Nom, prénom" value="">
</div>
</div>
<div class="form-group">
<label for="email" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="email" name="email" placeholder="[email protected]" value="">
</div>
</div>
<div class="form-group">
<label for="object" class="col-sm-2 control-label">Objet</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="object" name="object" placeholder="Objet du message" value="">
</div>
</div>
<div class="form-group">
<label for="message" class="col-sm-2 control-label">Message</label>
<div class="col-sm-10">
<textarea class="form-control" rows="4" name="message" placeholder="C'est à vous"></textarea>
</div>
</div>
<div class="form-group">
<div class="col-sm-10 col-sm-offset-2">
<input id="submit" name="submit" type="submit" value="Envoyer" class="btn btn-primary">
</div>
</div>
</form>
</div>
<div class="col-sm-6">
<address>
<strong>Venez nous voir</strong><br>
<i class="fa fa-home"></i> Lille<br>
<strong>N'hésitez pas à nous appeler</strong><br>
<i class="fa fa-phone"></i> Numéro
</address>
<div id="map-canvas"></div>
</div>
</div>
</div>
<footer class="footer text-center">
<div class="container">
<div class="row">
<div class="col-sm-12">
<p class="lead"><strong>Créaphé</strong></p>
<ul class="list-inline">
<li><p><strong><a href="blog.html">Blog</a></strong></p></li>
<li><p><strong><a href="founding.html">Magazine</a></strong></p></li>
<li><p><strong><a href="blog.html">S'inscrire à la newsletter</a></strong></p></li>
</ul>
<ul class="list-inline">
<li><p><strong><a href="blog.html">Notre projet</a></strong></p></li>
<li><p><strong><a href="founding.html">Nous soutenir</a></strong></p></li>
<li><p><strong><a href="contact.html">Nous contacter</a></strong></p></li>
<li><p><strong><a href="join.html">Inscription</a></strong></p></li>
<li><p><strong><a href="thanks.html">Remerciements</a></strong></p></li>
</ul>
<ul class="list-inline">
<li><p class="text-uppercase"><strong>Statut associatif</strong></p></li>
<li><p class="text-uppercase"><strong>CGU</strong></p></li>
<li><p class="text-uppercase"><strong>Mentions légales</strong></p></li>
<li><p class="text-uppercase"><strong>Plan du site</strong></p></li>
</ul>
<hr/>
<p class="lead"><strong>Rejoignez-nous sur</strong></p>
<ul class="list-inline">
<li><i class="fa fa-facebook-square fa-2x"></i></li>
<li><i class="fa fa-pinterest-square fa-2x"></i></li>
<li><i class="fa fa-instagram fa-2x"></i></li>
</ul>
<p class="text-muted"><small>© 2015 Créaphé, All rights reserved</small></p>
</div>
</div>
</div>
</footer>
</body>