-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.php
More file actions
102 lines (81 loc) · 2.25 KB
/
Copy pathdashboard.php
File metadata and controls
102 lines (81 loc) · 2.25 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
92
93
94
95
96
97
98
99
100
101
102
<?php
// include files
include'aPathFinder.php';
if(isset($_POST["routeIt"]))
{
$start=$_POST["start"];
$end=$_POST["end"];
}
if(isset($_POST['luser']))
{
$lchek=loginCheck($_POST['luser'],$_POST['lpass']);
if($lchek)
echo "Logged True";
}
?>
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TripPlanner | Welcome</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/modernizr.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
</head>
<body>
<div class="row">
<div class="large-9 columns"> </div>
<div class="large-1 columns"><a href="#">Dashboard</a></div>
<div class="large-1 columns"><a href="#" data-reveal-id="myRegModal" data-reveal >Register </a></div>
<div class="large-1 columns">|<a href="#" data-reveal-id="myLoginModal" data-reveal>
<?php if(isset($_SESSION['user']))
echo "Logout";
else
echo "login";?></a></div>
</div>
<div class="row">
<div class="large-12 columns">
<h1>Intelligent Trip Route Planner </h1>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="panel">
<h3>Your Planned Trip Routes..</h3>
<p>
<div class="row">
<table>
<tr>
<td>Sl no</td>
<td>Name</td>
<td>Route</td>
</tr>
<tr>Trip</tr>
</table>
</div>
</p>
</div>
</div>
</div>
<hr/>
</div>
</div>
</div>
<div class="row">
<div class="panel">
Copy Right @ Trip Planner.!
</div>
</div>
<?php include'popups.php';?>
<script src="js/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script src="js/foundation/foundation.reveal.js"></script>
<script>
$(document).foundation();
</script>
<?php
include'mapping.php';
?>
</body>
</html>