-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtrain-status.php
74 lines (71 loc) · 2.23 KB
/
train-status.php
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
<?php //STATION PROFILE
//include files
require_once("app-includes/app-include.php");
?>
<!doctype html>
<html lang="en">
<head>
<title>John Doe</title>
<?php include('meta-tags.html'); ?>
<link rel="stylesheet" href="/sih/css/main.css"/>
<style>
.index-section{background:#ddd;}
.ans-div{border:1px solid #777;}
</style>
</head>
<body>
<?php siteHeader(); ?>
<section class="index-section">
<div class="pm-box">
<ul class="pm-menu">
<a href="notifications.php"><li class="pm-item pm-icon"><i class="material-icons">refresh</i></li></a>
<a href="train-status.php?train=<?php echo($_GET['train']); ?>"><li class="pm-item pm-name"><p><?php echo($_GET['train']); ?></p></li>
<a href="#siteHead"><li class="pm-item pm-icon"><i class="material-icons">keyboard_arrow_up</i></li></a>
<div style="clear:both"></div>
</ul>
</div>
<hr class="sh-low-hr"/>
<section class="ib-section" style="text-align:left;">
<div class="ans-div">
<hr class="sh-low-hr" />
<header class="ans-head">
<span class="ans-date">Start Date : 04-03-2018</span>
<div style="clear:both"></div>
</header>
<section class="ans-section">
<p class="ans-content">13:50 - Left from Patiala Junction.</p>
</section>
<footer class="ans-footer">
<a href="track-train.php"><button class="ans-button">Track</button></a>
</footer>
</div>
<div class="ans-div">
<hr class="sh-low-hr" />
<header class="ans-head">
<span class="ans-date">Start Date : 04-03-2018</span>
<div style="clear:both"></div>
</header>
<section class="ans-section">
<p class="ans-content">13:50 - Left from Patiala Junction.</p>
</section>
<footer class="ans-footer">
<a href="#"><button class="ans-button">Track</button></a>
</footer>
</div>
<div class="ans-div">
<hr class="sh-low-hr" />
<header class="ans-head">
<span class="ans-date">Start Date : 04-03-2018</span>
<div style="clear:both"></div>
</header>
<section class="ans-section">
<p class="ans-content">13:50 - Left from Patiala Junction.</p>
</section>
<footer class="ans-footer">
<a href="#"><button class="ans-button">Track</button></a>
</footer>
</div>
</section>
</section>
</body>
</html>