-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhead2.php
More file actions
63 lines (59 loc) · 2.35 KB
/
head2.php
File metadata and controls
63 lines (59 loc) · 2.35 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
<?php
session_start();
if(isset($_SESSION["user"])){
$un=$_SESSION["user"];
}
else{
header('location: login.php');
}
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Railway Tickets Management System</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'>
<link href="css/calendar-eightysix-default.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/calendar-eightysix-osx-dashboard.css" rel="stylesheet" type="text/css" media="all" />
<link href="css/calendar-eightysix-vista.css" rel="stylesheet" type="text/css" media="all" />
<script type="text/javascript" src="js/mootools-1.2.4-core.js"></script>
<script type="text/javascript" src="js/mootools-1.2.4.2-more.js"></script>
<script type="text/javascript" src="js/calendar-eightysix-v1.0.1.js"></script>
<script type="text/javascript">
window.addEvent('domready', function() {
new CalendarEightysix('exampleI', { 'offsetY': -4 });
new CalendarEightysix('exampleII', { 'startMonday': true, 'format': '%m.%d.%Y', 'slideTransition': Fx.Transitions.Back.easeOut, 'draggable': true, 'offsetY': -4 });
});
</script>
</head>
<body>
<div class="header-top">
<div class="wrap">
<div class="logo">
<a href="main.php"><img height="56px" src="images/rtms.png" alt=""/></a>
</div>
<div class="cssmenu">
<nav id="nav" role="navigation">
<a href="#nav" title="Show navigation">Show navigation</a>
<a href="#" title="Hide navigation">Hide navigation</a>
<div class="buttons">
<div class="get_btn">
<a href="dashboard.php">Dashboard</a></div>
</nav>
</div>
<div class="buttons">
<div class="login_btn">
<a href="login.html">Logged as: <?php echo $un;?></a>
</div>
<div class="get_btn">
<a href="logout.php">Logout</a>
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
<h2 class="head">BOOK <span class="m_1">YOUR </span>TICKET <span class="m_1">NOW!</span></h2>
</div>
</div>