-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathuserindex.php
More file actions
46 lines (43 loc) · 1.12 KB
/
userindex.php
File metadata and controls
46 lines (43 loc) · 1.12 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
<?php
header ("Location: userplantrip.php");
include( "sessionRedirector.php" );
include( "userDashboardHeader.php" );
$userid = $_SESSION[ "userid" ];
?>
<div class="breadcrumbs">
<div class="col-sm-4">
<div class="page-header float-left">
<div class="page-title">
<?php echo "<h1>Welcome</h1>"?>
</div>
</div>
</div>
<div class="col-sm-8">
<div class="page-header float-right">
<div class="page-title">
<ol class="breadcrumb text-left">
<li class="active">
<?php //echo "User Id ".$userid ?>
</li>
</ol>
</div>
</div>
</div>
</div>
<div class="content mt-3">
<div class="card-header">
<h4>India</h4>
<div id="googleMap" style="width:100%;height:400px;"></div>
<script>
function myMap() {
var mapProp = {
center: new google.maps.LatLng( 25.4920, 81.8639 ),
zoom: 15,
};
var map = new google.maps.Map( document.getElementById( "googleMap" ), mapProp );
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDxYuQle47vALGQKq5P_8fJYXHQmZEWSo4&callback=myMap"></script>
</div>
</div>
<?php include( "userDashboardFooter.php" ); ?>