-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
executable file
·84 lines (75 loc) · 2.84 KB
/
index.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
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE HTML>
<!--
Orion Railway Reservation System
martdevelopers254 | @MartinMbithi
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Orion Railway Reservation System</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="includes/css/main.css" />
<noscript><link rel="stylesheet" href="includes/css/noscript.css" /></noscript>
</head>
<body class="is-preload">
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header id="header" class="alt">
<h1><a href="index.php">Orion Railway Reservation System</a></h1>
<nav>
<a href="#menu">Menu</a>
</nav>
</header>
<!-- Menu -->
<nav id="menu">
<div class="inner">
<h2>Menu</h2>
<ul class="links">
<li><a href="index.php">Home</a></li>
<li><a href="pass-login.php">Book Reservation</a></li>
<li><a href="employee/emp-login.php">Staff Login</a></li>
<li><a href="admin/emp-login.php">Admin Login</a></li>
</ul>
<a href="#" class="close">Close</a>
</div>
</nav>
<!-- Banner -->
<section id="banner">
<div class="inner">
<div class="logo"><span class="icon fa-gem"></span></div>
<h2>This is Orion Train Reservation System</h2>
<p>Best, Simple, Secure and User Friendly Way To Reserve Train Seats Effectively</a></p>
</div>
</section>
<section id="footer">
<div class="inner">
<h2 class="major">Get in touch</h2>
<ul class="contact">
<li class="icon solid fa-home">
Orion Railway Reservation Inc<br />
127.0.0.1<br />
LocalHost
</li>
<li class="icon solid fa-phone">(+254) 127-0000</li>
<li class="icon solid fa-envelope"><a href="#">mail@orrs.com</a></li>
<li class="icon brands fa-twitter"><a href="#">twitter.com/Orrs</a></li>
<li class="icon brands fa-facebook-f"><a href="#">facebook.com/orrs</a></li>
<li class="icon brands fa-instagram"><a href="#">instagram.com/orrs</a></li>
</ul>
<ul class="copyright">
<li>© Orion Railway Reservation System. All rights reserved.</li><li>Powered By: <a href="https://martmbithi.github.io">MartDevelopers</a></li>
</ul>
</div>
</section>
</div>
<!-- Scripts -->
<script src="includes/js/jquery.min.js"></script>
<script src="includes/js/jquery.scrollex.min.js"></script>
<script src="includes/js/browser.min.js"></script>
<script src="includes/js/breakpoints.min.js"></script>
<script src="includes/js/util.js"></script>
<script src="includes/js/main.js"></script>
</body>
</html>