-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
140 lines (112 loc) · 5.43 KB
/
about.html
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="icon" type="image/x-icon" href="Images/favicon.ico">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="team.css">
<style>
body {
background-color: #78CAD2;
}
</style>
</head>
<body>
<nav id="mainNavbar" class="navbar navbar-light navbar-expand-md py-1 px-2 fixed-top"
style="background-color: #0cb2f9;">
<a class="navbar-brand" href="#">
<img src="Images/icon.png" width="45" height="35" class="d-inline-block align-middle" alt="">
BUS MANAGEMENT SYSTEM
</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#navLinks" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-between" id="navLinks">
<ul class="navbar-nav">
<li class="nav-item">
<a href="Login/dist/login.php" class="nav-link">HOME</a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">ABOUT</a>
</li>
<li class="nav-item">
<a href="team.html" class="nav-link">TEAM</a>
</li>
<li class="nav-item">
<a href="Conductor_DashBoard/timetable.php" class="nav-link">TIME TABLE</a>
</li>
</ul>
<span class="nav-item">
<a class="nav-link" role="button" href="Login/dist/login.php">Login</a>
</span>
</div>
</nav>
<div class="container" style="padding-top:5%;">
<img src="Images/icon.png" class="img-fluid rounded mx-auto d-block" style="width:25%; height: 25%">
<h1 class="text-center">Bus Management System</h1><br>
<h2 class="text-center">DBMS Mini Project</h2>
<p>
The goal of the bus management system is to offer a systematic method for managing the depot admin,
drivers,
and conductors.
<br><br>
The Depot administrator can access all the data, add drivers and conductors, and allocate them trips
thanks
to the bus management system. The bus conductor can enter the revenue generated from each trip while
also
purchasing tickets for passengers.
The driver can input the actual time of departure and arrival as well as the amount of fuel used.
<br><br>
As a result, the Bus Management system makes it simple to operate and administer the bus transportation
service.
</p>
<p>
<br>
<h3 class="text-center">Database Description</h3>
<h4>BUS</h4>
Each bus will have a unique bus number.
<br><br>
<h4>ADMIN</h4>
The depot administrator can add new conductors/drivers by assigning them their credentials, which
include the Conductor/driver ID and password. The administrator can also assign trips.
The bus number, source, destination, scheduled arrival, departure, conductor ID, and driver ID must all
be entered by the administrator. The trip number, which is the primary key, is auto generated.
<br><br>
<h4>CONDUCTOR</h4>
When the conductor logs in, he can see the trip number he was assigned, as well as the bus number and
journey date.
The conductor can purchase tickets for the passenger by entering the passenger's mobile number, the
source, the destination, the price, and the trip number. A one-of-a-kind ticket id will be generated.
The conductor can enter trip details such as revenue generated and number of tickets sold.
<br><br>
<h4>DRIVER</h4>
Similarly When the driver logs in, he can see the trip number, as well as the bus number and trip date.
The driver can enter trip information such as fuel consumed, actual arrival and departure times, and
kilometres driven.
</p>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
<script>
$(function () {
$(document).scroll(function () {
var $nav = $("#mainNavbar");
$nav.toggleClass("scrolled", $(this).scrollTop() > $nav.height());
});
});
</script>
</body>
</html>