Commit 07793ced3f5d7aa3179833fdb7833609d2686363

Authored by henyxia
1 parent d5179a5c

Contact page

Showing 3 changed files with 32 additions and 0 deletions   Show diff stats
@@ -0,0 +1,25 @@ @@ -0,0 +1,25 @@
  1 +<div class="jumbotron">
  2 + <h1>Contact</h1>
  3 + <p>Pour toute information, vous pouvez contacter Mme Pichonnat</p>
  4 +</div>
  5 +&nbsp;
  6 +<div class="jumbotron">
  7 + <h1>Comment y accéder ?</h1>
  8 + <p>
  9 + <div id="map-canvas"></div>
  10 + </p>
  11 +</div>
  12 +<script>
  13 + function initialize()
  14 + {
  15 + var mapCanvas = document.getElementById('map-canvas');
  16 + var mapOptions =
  17 + {
  18 + center: new google.maps.LatLng(50.6080275, 3.1401501),
  19 + zoom: 8,
  20 + mapTypeId: google.maps.MapTypeId.ROADMAP
  21 + }
  22 + var map = new google.maps.Map(mapCanvas, mapOptions)
  23 + }
  24 + google.maps.event.addDomListener(window, 'load', initialize);
  25 +</script>
@@ -67,3 +67,9 @@ body @@ -67,3 +67,9 @@ body
67 { 67 {
68 height: 600px; 68 height: 600px;
69 } 69 }
  70 +
  71 +#map-canvas
  72 +{
  73 + width: 600px;
  74 + height: 400px;
  75 +}
@@ -14,6 +14,7 @@ require_once(&quot;creds.php&quot;); @@ -14,6 +14,7 @@ require_once(&quot;creds.php&quot;);
14 <link rel="stylesheet" href="css/bootstrap.css"> 14 <link rel="stylesheet" href="css/bootstrap.css">
15 <link rel="stylesheet" href="css/crep.css"> 15 <link rel="stylesheet" href="css/crep.css">
16 <link rel="shortcut icon" href="favicon.ico"/> 16 <link rel="shortcut icon" href="favicon.ico"/>
  17 + <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js"></script>
17 <script type="text/javascript" src="js/jquery.js"></script> 18 <script type="text/javascript" src="js/jquery.js"></script>
18 <script type="text/javascript" src="js/bootstrap.min.js"></script> 19 <script type="text/javascript" src="js/bootstrap.min.js"></script>
19 <script type="text/javascript" src="js/whirlpool.min.js"></script> 20 <script type="text/javascript" src="js/whirlpool.min.js"></script>