index.html 2.38 KB
Newer Older
Ian De La Cruz's avatar
Ian De La Cruz committed
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
<!DOCTYPE html>
<html lang="en">
	<head>
		<title>uBus | Admin System</title>
		<meta charset="utf-8">
		<meta name="description" content="uBus Ticket Reservation System administrator tools.">
		<link rel="icon" type="image/x-icon" href="img/favicon.ico">
		<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
		<link rel="stylesheet" type="text/css" href="css/rolling.css">
		<link rel="stylesheet" type="text/css" href="css/style.css">
		<script type="text/javascript" src="js/jquery-2.1.4.js"></script>
		<script src="js/parse-1.6.7.js"></script>
		<script type="text/javascript" src="js/app.js"></script>
	</head>
	<body>
		<header class="header">
			<a href="index.html" class="header__logo"><img src="img/logo.png" width="40px"></a>
			<nav class="header__nav" id="navigation">
				<a href=""></a>
				<a href=""></a>
			</nav>
		</header>
		<main class="container">
			<h1 id="welcomeMessage"></h1>
			<div class="actionbox card" id="tripManagement" style="display:none;">
			<!-- This is not available when user is a Clerk user -->
				<h1 class="actionbox__header">Trips Management</h1>
				<h2>Trips contain information on Schedules and Bus Assignments</h2>
				<ul class="actionbox__list">
					<li class="actionbox__listitem"><a href="createTrip.html">Create Trips</a></li>
					<li class="actionbox__listitem"><a href="viewTrip.html">View All Trips</a></li>
				</ul>
			</div>
			<div class="actionbox card" id="scheduleManagement" style="display:none;">
			<!-- This is not available when user is a Clerk user -->
				<h1 class="actionbox__header">Schedule Management</h1>
				<h2>Schedules contain information on the specifics, ie. day, time and terminals</h2>
				<ul class="actionbox__list">
					<li class="actionbox__listitem"><a href="createSchedule.html">Create Schedules</a></li>
					<li class="actionbox__listitem"><a href="viewSchedules.html">View All Schedules</a></li>
				</ul>
			</div>
			<div class="actionbox card" id="customerManagement">
				<h1 class="actionbox__header">Customer Management</h1>
				<ul class="actionbox__list">
					<li class="actionbox__listitem"><a href="register.html">Register New User</a></li>
					<li class="actionbox__listitem"><a href="reload.html">Reload User Credits</a></li>
				</ul>
			</div>
			<!-- <button onclick="app.searchRole()">Print in Console</button> -->
			 
		</main>
	</body>
</html>