0% found this document useful (0 votes)
147 views78 pages

Final Print Sree

This document describes a car rental management system that allows customers to view available cars online, register accounts, and book rentals. It discusses the existing manual system and proposes an online system to computerize processes. The system will use MySQL for the database and HTML for the user interface. It will allow customers to reserve cars online and store their registration and transaction details. A feasibility study found the system economically and technically feasible to implement.

Uploaded by

Hithesh Nayak
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
147 views78 pages

Final Print Sree

This document describes a car rental management system that allows customers to view available cars online, register accounts, and book rentals. It discusses the existing manual system and proposes an online system to computerize processes. The system will use MySQL for the database and HTML for the user interface. It will allow customers to reserve cars online and store their registration and transaction details. A feasibility study found the system economically and technically feasible to implement.

Uploaded by

Hithesh Nayak
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 78

CAR RENTAL MANAGEMENT SYSTEM

1. INTRODUCTION
This project is designed so as to be used by Car Rental Company specializing in renting cars to
customers. It is an online system through which customers can view available cars, register, view
profile and book car.

This project traverses a lot of areas ranging from business concept to computing field, and
required to perform several researches to be able to achieve the project objectives. The area
covers include:

BCA 2020-2021 SBMJC-KGF Page 1


CAR RENTAL MANAGEMENT SYSTEM

2. LITERATURE SURVEY

A car rental is a vehicle that can be used temporarily for a fee during a specified period. Getting
a rental car helps people get around despite the fact they do not have access to their own personal
vehicle or don't own a vehicle at all. The individual who needs a car must contact a rental car
company and contract out for a vehicle. This system increases customer retention and simplify
vehicle and staff management.

Enhance Business Processes: To be able to use internet technology to project the rental company
to the global world instead of limiting their services to their local domain alone, thus increase
their return on investment (ROI).

Online Vehicle Reservation: A tools through which customers can reserve available cars online
prior to their expected pick-up date or time.

Customer’s registration: A registration portal to hold customer’s details, monitor their transaction
and used same to offer better and improve services to them.

BCA 2020-2021 SBMJC-KGF Page 2


CAR RENTAL MANAGEMENT SYSTEM

2.1 Existing And Proposed System

Existing System

The main objective of the existing system is to provide a user-friendly interface. The system,
which is proposed, now computerizes all the details that are maintained manually. Once the
details are fed into the computer there is no need for various persons to deal with separate
sections. Only a single person is enough to maintain all the reports. The security can also be
given as per requirement of the user.

 Large volumes of the data can be stored with case


 Maintenance of file is flexible.
 Records stored are updated now and then.
 Stored data and procedures can be easily edited.
 Reports can be generated with case.
 Accurate calculations are made.
 Less manpower required.

Proposed system

The car rental management system will manage all the work in any system in particular order so
that the time requirement and complexity of the system will be reduced, at first it will focus on
user related information. As a user gets the required car, the system will start managing the
details regarding the user.

BCA 2020-2021 SBMJC-KGF Page 3


CAR RENTAL MANAGEMENT SYSTEM

2.2 Feasibility Study

Fesibility study is a step towards identification of the user system as a feasiable product.
First the car rent often pre-suppose that when the feasibility document is being prepared,
the analyst is in a position to evaluate solutions. Second, most car rent tend to overlook the
confusion inhearnt in system development. The constraints and the assumed attitudes.

Fesibility Considerations:

There are three key considerations to the feaibility study:

 Economic
 Technical
 Behavioral
 Operational
 Schedule

Economical feasibility:

Economic justification is generally the “Bottom Line” consideration for most systems.
Economic justification includes a broad range of concerns that includes cost benefit
analysis. In this we weight the cost and the benefits associated with the candidate system
and if it suits the basic purpose of the organization

BCA 2020-2021 SBMJC-KGF Page 4


CAR RENTAL MANAGEMENT SYSTEM

Technical feasibility :

A study of resource availability that may affect the ability to achieve an acceptable system.
This evaluation determines whether the technology needed for the proposed system is
available or not.

Behavioural Fesibility:

The proposed system is also behaviorally feasible as it is very user friendly.Extensive


trainning of the users is not required. The users can easily learn to use the system and
can adapt themselves according to the system.

Operational Feasibility :

It is mainly related to human organizations and political aspects.

BCA 2020-2021 SBMJC-KGF Page 5


CAR RENTAL MANAGEMENT SYSTEM

2.3 Tools And Technologies Used

DATABASE:
A database management system (DBMS) is system software for creating and
managing databases. The DBMS provides users and programmers with a systematic way to
create, retrieve, update and manage data. A DBMS makes it possible for end users to create,
read, update and delete data in a database. The DBMS essentially serves as an interface between
the database and end users or application programs, ensuring that data is consistently organized
and remains easily accessible. The DBMS manages three important things: the data, the
database engine that allows data to be accessed, locked and modified and the database schema,
which defines the database’s logical structure.
These three foundational elements help provide concurrency, security, data integrity and uniform
administration procedures. Typical database administration tasks supported by the DBMS
include change management, performance monitoring/tuning and backup and recovery. Many
database management systems are also responsible for automated rollbacks, restarts and recovery
as well as the logging and auditing of activity. A database management system can limit what
data the end user sees as well as how the end user can view the data providing many views of a
single database schema. End user and software programs are free to understand where the data is
physically located or on what type of storage media it resides because the database management
handles all. Example: MySQL, Oracle etc… The general purpose DBMS allows the definition,
creation, querying, update and administration of databases.

BCA 2020-2021 SBMJC-KGF Page 6


CAR RENTAL MANAGEMENT SYSTEM

My SQL

MySQL is an open source relational database management system (RDBMS) based on


Structured Query Language (SQL). MySQL runs on virtually all platforms, including Linux,
UNIX, and Windows. Although it can be used in a wide range of applications, MySQL is most
often associated with web-based applications and online publishing and is an important
component of an open source enterprise stack called LAMP. LAMP is a Web development
platform that uses Linux as the operating system, Apache as the Web server, and MySQL as the
relational database management system and PHP as the object-oriented scripting language.
(Sometimes Perl or Python is used instead of PHP).

MySQL is a full-featured relational database management system (RDBMS) that competes with
the likes of Oracle DB and Microsoft’s SQL Server.

BCA 2020-2021 SBMJC-KGF Page 7


CAR RENTAL MANAGEMENT SYSTEM

Following are the basic syntaxes of MySQL with examples:-

CREATE:-

CREATE TABLE table_name (column_name column_type);

INSERT:-

INSERT INTO table_name (field1, field2,….fieldN) VALUES (value1, value2,….valueN);

To insert string data types, it is required to keep all the values into double or single quotes.

SELECT:-

SELECT field1, field2,…..fieldN from table_name1, table_name2

[WHERE Clause];

DELETE:-
DELETE FROM table_name

[WHERE Clause]

BCA 2020-2021 SBMJC-KGF Page 8


CAR RENTAL MANAGEMENT SYSTEM

HTML

HTML (Hypertext Markup Language) is the set of mark-up symbols or codes inserted in a file
intended for display on a World Wide Web browser page. The mark-up tells the Web browser how to
display a Web page's words and images for the user. Each individual mark-up code is referred to as an
element (but many people also refer to it as a tag). Some elements come in pairs that indicate when
some display effect is to begin and when it is to end.
HTML is a formal Recommendation by the World Wide Web Consortium (W3C) and is
generally adhered to by the major browsers, Microsoft's Internet Explorer and Netscape's
Navigator, which also provide some additional non-standard codes. The current version of
HTML is HTML 4.0. However, both Internet Explorer and Netscape implement some features
differently and provide non-standard extensions. Web developers using the more advanced
features of HTML 4 may have to design pages for both browsers and send out the appropriate
version to a user. Significant features in HTML 4 are sometimes described in general as dynamic
HTML. What is sometimes referred to as HTML 5 is an extensible form of HTML called
Extensible Hypertext Markup Language (XHTML) .company MySQL AB, which is owned by
Oracle Corp.

BCA 2020-2021 SBMJC-KGF Page 9


CAR RENTAL MANAGEMENT SYSTEM

HTML Tags:
The tags are what separate normal text from HTML code, you might know them as that words between
the <angle-brackets>They allow all the cool stuffs like images and tables and stuffs just by telling your
browser what to render on the page. Different tags perform different functions. Some of the basic tags
are mentioned below:

SL.No TAGS DESCRPITION


1 <!DOCTYPE> Defines the document type
2 <html> Defines an html document
3 <head> Defines information about the document
4 <title> Defines a tittle of the
document
5 <body> Defines the document body
6 <h1> to <h6> Defines HTML headings
7 <p> Defines paragraph
8 <br> Inserts a single line break
9 <hr> Defines a thematic change in the content

BCA 2020-2021 SBMJC-KGF Page 10


CAR RENTAL MANAGEMENT SYSTEM

PHP:

PHP Stands for "Hypertext Preprocessor." (It is a recursive acronym, if you can understand what
that means.) PHP is an HTML-embedded Web scripting language. This means PHP code can be
inserted into the HTML of a Web page. When a PHP page is accessed, the PHP code is read or
"parsed" by the server the page resides on. The outputs from the PHP functions on the page are
typically returned as HTML code, which can be read by the browser. Because the PHP code is
transformed into HTML before the page is loaded, users cannot view the PHP code on a page.

This make PHP pages secure enough to access databases and other secure information.
A lot of the syntax of PHP is borrowed from other languages such as C, Java and Perl. However,
PHP has a number of unique features and specific functions as well. The goal of the language is
to allow Web developers to write dynamically generated pages quickly and easily. PHP is also
great for creating database-driven Web sites. If you would like to learn more about PHP, the
official site is PHP.net.

PHP is a script language and interpreter that is freely available and used primarily
on Linux Web servers. PHP originally derived from Personal Home Page Tools, now stands
for PHP: Hypertext Pre-processor, which the PHP FAQ describes as a "recursive acronym.

BCA 2020-2021 SBMJC-KGF Page 11


CAR RENTAL MANAGEMENT SYSTEM

PHP executes on the server, while a comparable alternative, JavaScript, executes on the
client. PHP is an alternative to Microsoft's Active Server Page (ASP) technology. As with ASP,
the PHP script is embedded within a Web page along with its HTML. Before the page is sent to a
user that has requested it, the Web server calls PHP to interpret and perform the operations called
for in the PHP script.

An HTML page that includes a PHP script is typically given a file name suffix of ".php" ".php7,"
or "phtml".Like ASP, PHP can be thought of as "dynamic HTML pages," since content will vary
based on the results of interpreting the script. PHP is free and offered under a source license.
The characteristics of PHP are Simplicity, Efficiency, Security, Flexibility, and Familiarity.

BCA 2020-2021 SBMJC-KGF Page 12


CAR RENTAL MANAGEMENT SYSTEM

JAVA SCRIPT

JavaScript (JS) is a light-weight object-oriented programming language which is used by several


websites for scripting the web pages. It is an interpreter, full-fledged programming language that
enables dynamic interactivity on websites when applied to an HTML document. It was
introduced in the year 1995 for adding programs to the WebPages in the Netscape Navigator
browser. Since then, it has been adopted by all other graphical web browsers. With JavaScript,
users can build modern web applications to interact directly without reloading the page every
time. The traditional website uses JS to provide several forms of interactivity and simplicity.

Although, JavaScript has no connectivity with Java programming language. The name was
suggested and provided in the times when Java was gaining popularity in the market. In addition
to web browsers, a database such as CouchDB and MongoDB uses JavaScript as their scripting
and query language.

BCA 2020-2021 SBMJC-KGF Page 13


CAR RENTAL MANAGEMENT SYSTEM

CSS

Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a
document written in a markup language such as HTML. CSS is a cornerstone technology of
the World Wide Web, alongside HTML and JavaScript.

CSS is designed to enable the separation of presentation and content, including layout, colors,
and fonts. This separation can improve content accessibility, provide more flexibility and control
in the specification of presentation characteristics, enable multiple web pages to share formatting
by specifying the relevant CSS in a separate css file which reduces complexity and repetition in
the structural content as well as enabling the css file to be cached to improve the page load speed
between the pages that share the file and its formatting.

Separation of formatting and content also makes it feasible to present the same markup page in
different styles for different rendering methods, such as on-screen, in print, by voice (via speech-
based browser or screen reader), and on Braille-based tactile devices. CSS also has rules for
alternate formatting if the content is accessed on a mobile device

BCA 2020-2021 SBMJC-KGF Page 14


CAR RENTAL MANAGEMENT SYSTEM

XAMPP

XAMPP is an abbreviation where X stands for Cross-Platform, A stands for Apache, M stands
for MYSQL, and the Ps stand for PHP and Perl, respectively. It is an open-source package of
web solutions that includes Apache distribution for many servers and command-line executables
along with modules such as Apache server, MariaDB, PHP, and Perl.

XAMPP helps a local host or server to test its website and clients via computers and laptops
before releasing it to the main server. It is a platform that furnishes a suitable environment to test
and verify the working of projects based on Apache, Perl, MySQL database, and PHP through
the system of the host itself. Among these technologies, Perl is a programming language used for
web development, PHP is a backend scripting language, and MariaDB is the most vividly used
database developed by MySQL. The detailed description of these components is given below.

XAMPP is one of the widely used cross-platform web servers, which helps developers to create
and test their programs on a local web server. It was developed by the Apache Friends, and its
native source code can be revised or modified by the audience. It consists of Apache HTTP
Server, MariaDB, and interpreter for the different programming languages like PHP and Perl. It
is available in 11 languages and supported by different platforms such as the IA-32 package of
Windows & x64 package of macOS and Linux.

BCA 2020-2021 SBMJC-KGF Page 15


CAR RENTAL MANAGEMENT SYSTEM

3. SYSTEM REQUIREMENTS SPECIFICATION

HARDWARE REQUIREMENTS

 Processor: Intel CORE i4 7th Gen


 Primary memory:512mb
 Secondary memory:120gb
 Input Device: Keyboard, Mouse

SOFTWARE REQUIREMENTS:
 Frontend: JavaScript, CSS, Html
 Backend: PHP
 Operating System: Microsoft Windows10.
 Web browser: Chrome, Internet Explorer etc.
 Database: My SQL, MYSQL, Apache

BCA 2020-2021 SBMJC-KGF Page 16


CAR RENTAL MANAGEMENT SYSTEM

3.1 Functional Requirement


Requirement analysis is a software engineering technique that is composed of the various tasks
that determine the needs or conditions that are to be met for a new or altered product, taking into
consideration the possible conflicting requirements of the various users.

Functional requirements are those requirements that are used to illustrate the internal working
nature of the system, the description of the system, and explanation of each subsystem. It
consists of what task the system should perform, the processes involved, which data should the
system holds and the interfaces with the user. The functional requirements identified are:

a. Customer’s registration: The system should allow new users to register online and generate
membership card.
b. Online reservation of cars: Customers should be able to use the system to make booking and
online reservation.
c. Automatic update to database once reservation is made or new customer registered:
Whenever there’s new reservation or new registration, the system should be able update the
database without any additional efforts from the admin.
d. Feedbacks to customers: It should provide means for customers to leave feedback.

BCA 2020-2021 SBMJC-KGF Page 17


CAR RENTAL MANAGEMENT SYSTEM

3.2 Non-Functional Requirement

Security
Every user has his own account and only authorized users can access the system with
username and password.

Performance

Easy tracking of records and updating can be done.


Availability

The system are available to users anytime, anywhere, just need a PC and Internet
Connection. Also the system work in multiple web browsers like (Chrome, Mozilla, Opera,
and Internet Explorer).

User Friendly

The systems have a friendly user interface and the system very interactive.

BCA 2020-2021 SBMJC-KGF Page 18


CAR RENTAL MANAGEMENT SYSTEM

4. SYSTEM DESIGN

System design is the process of defining the architecture, modules, interfacing and data for a
system to satisfy specified requirements. System design could be seen as the application system
of system theory to product development.

Architectural Design

The architectural design of a system emphasizes the design of the system architecture that
describes the structure behavior and more views of that system and analysis.

Logical Design

The logical design of a system pertains to an abstract representation of the flows, inputs and
outputs of the system. This often conducted via modeling, using an over abstract (and sometimes
graphical) model of actual system. Logical design includes entity relationship diagrams(ER
diagrams).

BCA 2020-2021 SBMJC-KGF Page 19


CAR RENTAL MANAGEMENT SYSTEM

4.1 PERT CHART

Planning and scheduling

Collection of Requirements

Analysis

Design

Coding

Testing

BCA 2020-2021 SBMJC-KGF Page 20


CAR RENTAL MANAGEMENT SYSTEM

4.2 DATA FLOW DIAGRAM(S) [D. F. D.]

The data flow diagrams are pictorial or graphical representation of the outline of the system
study. The data flow diagram covers all the processes and data storage area, which takes place
during any transaction in the system. The data flow diagrams are functionally divided into
context level, Zero level, First level and Second level data flow diagrams.

Symbols used in DFDs:

1. Process: Here flow of data is transformed.E.g. Forms Distribution, Preparing Merit list, etc.

2. External Entity: A source or destination of data, which is external to the system.


E.g. Student, Committee etc.

3. A data flow: It is packet of data. It may be in the form of document, letter etc.

4. Data store: Any store data but with no reference to the physical method of storing.

BCA 2020-2021 SBMJC-KGF Page 21


CAR RENTAL MANAGEMENT SYSTEM

ER-DIAGRAM
An entity relationship model is a detailed and logical representation of the data for an
organisation or for business area. The entity relationship, which is also known as ER-
Relationship is based on the theory of real world which consist of a set of basic, which are
called entites and relationships among these object.

The data model was developed to facilitate database design by allowing specification of an
enterprise scheme which represents the overall logical structure of a database. We will
present the modelling concept of ER model which is higher level conceptual data, the ER-
model does not provide the overall database structure but it gives the intermediate step on
the basis of which database is designed.

The ER modelling is a technique for analysis and logical modelling of a systems data
requirement. It uses graphical notation for representing these .

ENTITY

WEAK ENTITY

RELATIONSHIP

BCA 2020-2021 SBMJC-KGF Page 22


CAR RENTAL MANAGEMENT SYSTEM

WEAK RELATIONSHIP

ATTRIBUTES

KEY ATTRIBUTES

BCA 2020-2021 SBMJC-KGF Page 23


CAR RENTAL MANAGEMENT SYSTEM

4.3 Admin use case Diagram

Admin

Brands Vehicles Bookings Testimonial Query Reg user Manage pg

Creat Manage Post Manage New Confirm Cancel

Brand brand
Vehicle Vehicle

Update info Manage subscribers

BCA 2020-2021 SBMJC-KGF Page 24


CAR RENTAL MANAGEMENT SYSTEM

4.4 User use case Diagram

User

Home Car Listing Faq’s Contact Us Login Register

Brand Fuel Type Listed Car Sign Up

New User

BCA 2020-2021 SBMJC-KGF Page 25


CAR RENTAL MANAGEMENT SYSTEM

4.5 ER Diagram for Car Rental Management System

Registered user
Name

Mobile User Car Rented Car


New user Rent
no

E-mail

Password
User Name

Admin Confirm yes Car Is


Confirmed

Password

No

Your Requested

Car Is Canceled

Sad End Happy End

BCA 2020-2021 SBMJC-KGF Page 26


CAR RENTAL MANAGEMENT SYSTEM

5. SCREEN SHOTS

ADMIN LOGIN

BCA 2020-2021 SBMJC-KGF Page 27


CAR RENTAL MANAGEMENT SYSTEM

ADMIN INFORMATION

BCA 2020-2021 SBMJC-KGF Page 28


CAR RENTAL MANAGEMENT SYSTEM

CREAT BRAND

BCA 2020-2021 SBMJC-KGF Page 29


CAR RENTAL MANAGEMENT SYSTEM

MANAGE BRAND

BCA 2020-2021 SBMJC-KGF Page 30


CAR RENTAL MANAGEMENT SYSTEM

ADD VEHICLES

BCA 2020-2021 SBMJC-KGF Page 31


CAR RENTAL MANAGEMENT SYSTEM

MANAGE VEHICLES

BCA 2020-2021 SBMJC-KGF Page 32


CAR RENTAL MANAGEMENT SYSTEM

NEW BOOKINGS

BCA 2020-2021 SBMJC-KGF Page 33


CAR RENTAL MANAGEMENT SYSTEM

CONFIRMED BOOKINGS

BCA 2020-2021 SBMJC-KGF Page 34


CAR RENTAL MANAGEMENT SYSTEM

CANCELED BOOKINGS

BCA 2020-2021 SBMJC-KGF Page 35


CAR RENTAL MANAGEMENT SYSTEM

MANAGE TESTIMONIALS

BCA 2020-2021 SBMJC-KGF Page 36


CAR RENTAL MANAGEMENT SYSTEM

REGISTERED USERS

BCA 2020-2021 SBMJC-KGF Page 37


CAR RENTAL MANAGEMENT SYSTEM

MANAGE PAGES

BCA 2020-2021 SBMJC-KGF Page 38


CAR RENTAL MANAGEMENT SYSTEM

UPDATE CONTACT INFO

BCA 2020-2021 SBMJC-KGF Page 39


CAR RENTAL MANAGEMENT SYSTEM

MANAGE SUBSCRIBERS

BCA 2020-2021 SBMJC-KGF Page 40


CAR RENTAL MANAGEMENT SYSTEM

ADMIN CHANGE PASSWORD

BCA 2020-2021 SBMJC-KGF Page 41


CAR RENTAL MANAGEMENT SYSTEM

USER FORM

USER LOGIN

BCA 2020-2021 SBMJC-KGF Page 42


CAR RENTAL MANAGEMENT SYSTEM

USER SIGN UP

CAR LISTING 1

BCA 2020-2021 SBMJC-KGF Page 43


CAR RENTAL MANAGEMENT SYSTEM

CAR LISTING 2

CAR LISTING 3

BCA 2020-2021 SBMJC-KGF Page 44


CAR RENTAL MANAGEMENT SYSTEM

ABOUT US

USER PROFILE

BCA 2020-2021 SBMJC-KGF Page 45


CAR RENTAL MANAGEMENT SYSTEM

USER PASSWORD UPDATE

OUR INFORMATION

BCA 2020-2021 SBMJC-KGF Page 46


CAR RENTAL MANAGEMENT SYSTEM

5. CODINGS

<!DOCTYPE HTML>

<html lang="en">

<head>

<title>Car Rental Portal</title>

<!--Bootstrap -->

<link rel="stylesheet" href="assets/css/bootstrap.min.css" type="text/css">

<link rel="stylesheet" href="assets/css/style.css" type="text/css">

<link rel="stylesheet" href="assets/css/owl.carousel.css" type="text/css">

<link rel="stylesheet" href="assets/css/owl.transitions.css" type="text/css">

<link href="assets/css/slick.css" rel="stylesheet">

<link href="assets/css/bootstrap-slider.min.css" rel="stylesheet">

<link href="assets/css/font-awesome.min.css" rel="stylesheet">

<link rel="stylesheet" id="switcher-css" type="text/css" href="assets/switcher/css/switcher.css"


media="all" />

<link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/red.css" title="red"


media="all" data-default-color="true" />

<link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/orange.css" title="orange"


media="all" />

<link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/blue.css" title="blue"


media="all" />

<link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/pink.css" title="pink"


media="all" />

BCA 2020-2021 SBMJC-KGF Page 47


CAR RENTAL MANAGEMENT SYSTEM

<link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/green.css" title="green"


media="all" />

<link rel="alternate stylesheet" type="text/css" href="assets/switcher/css/purple.css" title="purple"


media="all" />

<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/images/favicon-icon/apple-


touch-icon-144-precomposed.png">

<link rel="apple-touch-icon-precomposed" sizes="114x114" href="assets/images/favicon-icon/apple-


touch-icon-114-precomposed.html">

<link rel="apple-touch-icon-precomposed" sizes="72x72" href="assets/images/favicon-icon/apple-


touch-icon-72-precomposed.png">

<link rel="apple-touch-icon-precomposed" href="assets/images/favicon-icon/apple-touch-icon-57-


precomposed.png">

<link rel="shortcut icon" href="assets/images/favicon-icon/favicon.png">

<link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet">

</head>

<body>

<!-- Start Switcher -->

<div class="switcher-wrapper">

<div class="demo_changer">

<div class="demo-icon customBgColor"><i class="fa fa-cog fa-spin fa-2x"></i></div>

<div class="form_holder">

<div class="row">

<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">

<div class="predefined_styles">

<div class="skin-theme-switcher">

BCA 2020-2021 SBMJC-KGF Page 48


CAR RENTAL MANAGEMENT SYSTEM

<h4>Color</h4>

<a href="#" data-switchcolor="red" class="styleswitch" style="background-color:#de302f;"> </a>

<a href="#" data-switchcolor="orange" class="styleswitch" style="background-color:#f76d2b;"> </a>

<a href="#" data-switchcolor="blue" class="styleswitch" style="background-color:#228dcb;"> </a>

<a href="#" data-switchcolor="pink" class="styleswitch" style="background-color:#FF2761;"> </a>

<a href="#" data-switchcolor="green" class="styleswitch" style="background-color:#2dcc70;"> </a>

<a href="#" data-switchcolor="purple" class="styleswitch" style="background-color:#6054c2;"> </a>

</div>

</div>

</div>

</div>

</div>

</div>

</div><!-- /Switcher -->

<!--Header-->

<header>

<div class="default-header">

<div class="container">

<div class="row">

<div class="col-sm-3 col-md-2">

<div class="logo"> <a href="index.php"><img src="assets/images/logo.png" alt="image"/></a> </div>

</div>

BCA 2020-2021 SBMJC-KGF Page 49


CAR RENTAL MANAGEMENT SYSTEM

<div class="col-sm-9 col-md-10">

<div class="header_info">

<div class="header_widgets">

<div class="circle_icon"> <i class="fa fa-envelope" aria-hidden="true"></i> </div>

<p class="uppercase_text">For Support Mail us : </p>

<a href="mailto:[email protected]">[email protected]</a> </div>

<div class="header_widgets">

<div class="circle_icon"> <i class="fa fa-phone" aria-hidden="true"></i> </div>

<p class="uppercase_text">Service Helpline Call Us: </p>

<a href="tel:01000011">01000011</a> </div>

<div class="social-follow">

</div>

Welcome To Car rental portal </div>

</div>

</div>

</div>

</div>

<!-- Navigation -->

<nav id="navigation_bar" class="navbar navbar-default">

<div class="container">

<div class="navbar-header">

<button id="menu_slide" data-target="#navigation" aria-expanded="false" data-toggle="collapse"


class="navbar-toggle collapsed" type="button"> <span class="sr-only">Toggle navigation</span> <span

BCA 2020-2021 SBMJC-KGF Page 50


CAR RENTAL MANAGEMENT SYSTEM

class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button>

</div>

<div class="header_wrap">

<div class="user_login">

<ul>

<li class="dropdown"> <a href="#" data-toggle="dropdown" aria-haspopup="true" aria-


expanded="false"><i class="fa fa-user-circle" aria-hidden="true"></i>

SREENU S <i class="fa fa-angle-down" aria-hidden="true"></i></a>

<ul class="dropdown-menu">

<li><a href="profile.php">Profile Settings</a></li>

<li><a href="update-password.php">Update Password</a></li>

<li><a href="my-booking.php">My Booking</a></li>

<li><a href="post-testimonial.php">Post a Testimonial</a></li>

<li><a href="my-testimonials.php">My Testimonial</a></li>

<li><a href="logout.php">Sign Out</a></li>

</ul>

</li>

</ul>

</div>

<div class="header_search">

<div id="search_toggle"><i class="fa fa-search" aria-hidden="true"></i></div>

<form action="search.php" method="post" id="header-search-form">

<input type="text" placeholder="Search..." name="searchdata" class="form-control" required="true">

BCA 2020-2021 SBMJC-KGF Page 51


CAR RENTAL MANAGEMENT SYSTEM

<button type="submit"><i class="fa fa-search" aria-hidden="true"></i></button>

</form>

</div>

</div>

<div class="collapse navbar-collapse" id="navigation">

<ul class="nav navbar-nav">

<li><a href="index.php">Home</a> </li>

<li><a href="page.php?type=aboutus">About Us</a></li>

<li><a href="car-listing.php">Car Listing</a>

<li><a href="page.php?type=faqs">FAQs</a></li>

<li><a href="contact-us.php">Contact Us</a></li>

</ul>

</div>

</div>

</nav>

<!-- Navigation end -->

</header><!-- /Header -->

<!-- Banners -->

<section id="banner" class="banner-section">

<div class="container">

<div class="div_zindex">

<div class="row">

BCA 2020-2021 SBMJC-KGF Page 52


CAR RENTAL MANAGEMENT SYSTEM

<div class="col-md-5 col-md-push-7">

<div class="banner_content">

<h1>&nbsp;</h1>

<p>&nbsp; </p>

</div>

</div>

</div>

</div>

</div>

</section>

<!-- /Banners -->

<!-- Resent Cat-->

<section class="section-padding gray-bg">

<div class="container">

<div class="section-header text-center">

<h2>Find the Best <span>CarForYou</span></h2>

<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered
alteration in some form, by injected humour, or randomised words which don't look even slightly
believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything
embarrassing hidden in the middle of text.</p>

</div>

<div class="row">

<!-- Nav tabs -->

BCA 2020-2021 SBMJC-KGF Page 53


CAR RENTAL MANAGEMENT SYSTEM

<div class="recent-tab">

<ul class="nav nav-tabs" role="tablist">

<li role="presentation" class="active"><a href="#resentnewcar" role="tab" data-toggle="tab">New


Car</a></li>

</ul>

</div>

<!-- Recently Listed New Cars -->

<div class="tab-content">

<div role="tabpanel" class="tab-pane active" id="resentnewcar">

<div class="col-list-3">

<div class="recent-car-list">

<div class="car-info-box"> <a href="vehical-details.php?vhid=1"><img


src="admin/img/vehicleimages/rear-3-4-left-589823254_930x620.jpg" class="img-responsive"
alt="image"></a>

<ul>

<li><i class="fa fa-car" aria-hidden="true"></i>Petrol</li>

<li><i class="fa fa-calendar" aria-hidden="true"></i>2019 Model</li>

<li><i class="fa fa-user" aria-hidden="true"></i>5 seats</li>

</ul>

</div>

<div class="car-title-m">

<h6><a href="vehical-details.php?vhid=1"> Maruti Suzuki Wagon R</a></h6>

<span class="price">$500 /Day</span>

BCA 2020-2021 SBMJC-KGF Page 54


CAR RENTAL MANAGEMENT SYSTEM

</div>

<div class="inventory_info_m">

<p>Maruti Wagon R Latest Updates

Maruti Suzuki has launched the BS6 Wa</p>

</div>

</div>

</div>

<div class="col-list-3">

<div class="recent-car-list">

<div class="car-info-box"> <a href="vehical-details.php?vhid=2"><img


src="admin/img/vehicleimages/BMW-5-Series-Exterior-102005.jpg" class="img-responsive"
alt="image"></a>

<ul>

<li><i class="fa fa-car" aria-hidden="true"></i>Petrol</li>

<li><i class="fa fa-calendar" aria-hidden="true"></i>2018 Model</li>

<li><i class="fa fa-user" aria-hidden="true"></i>5 seats</li>

</ul>

</div>

<div class="car-title-m">

<h6><a href="vehical-details.php?vhid=2"> BMW 5 Series</a></h6>

<span class="price">$1000 /Day</span>

</div>

<div class="inventory_info_m">

BCA 2020-2021 SBMJC-KGF Page 55


CAR RENTAL MANAGEMENT SYSTEM

<p>BMW 5 Series price starts at ? 55.4 Lakh and goes upto ? 68.39 Lakh. T</p>

</div>

</div>

</div>

<div class="col-list-3">

<div class="recent-car-list">

<div class="car-info-box"> <a href="vehical-details.php?vhid=3"><img


src="admin/img/vehicleimages/audi-q8-front-view4.jpg" class="img-responsive" alt="image"></a>

<ul>

<li><i class="fa fa-car" aria-hidden="true"></i>Petrol</li>

<li><i class="fa fa-calendar" aria-hidden="true"></i>2017 Model</li>

<li><i class="fa fa-user" aria-hidden="true"></i>5 seats</li>

</ul>

</div>

<div class="car-title-m">

<h6><a href="vehical-details.php?vhid=3"> Audi Q8</a></h6>

<span class="price">$3000 /Day</span>

</div>

<div class="inventory_info_m">

<p>As per ARAI, the mileage of Q8 is 0 kmpl. Real mileage of the vehicle </p>

</div>

</div>

BCA 2020-2021 SBMJC-KGF Page 56


CAR RENTAL MANAGEMENT SYSTEM

</div>

<div class="col-list-3">

<div class="recent-car-list">

<div class="car-info-box"> <a href="vehical-details.php?vhid=4"><img


src="admin/img/vehicleimages/front-left-side-47.jpg" class="img-responsive" alt="image"></a>

<ul>

<li><i class="fa fa-car" aria-hidden="true"></i>Petrol</li>

<li><i class="fa fa-calendar" aria-hidden="true"></i>2020 Model</li>

<li><i class="fa fa-user" aria-hidden="true"></i>5 seats</li>

</ul>

</div>

<div class="car-title-m">

<h6><a href="vehical-details.php?vhid=4"> Nissan Kicks</a></h6>

<span class="price">$800 /Day</span>

</div>

<div class="inventory_info_m">

<p>Latest Update: Nissan has launched the Kicks 2020 with a new turbochar</p>

</div>

</div>

</div>

<div class="col-list-3">

<div class="recent-car-list">

<div class="car-info-box"> <a href="vehical-details.php?vhid=5"><img

BCA 2020-2021 SBMJC-KGF Page 57


CAR RENTAL MANAGEMENT SYSTEM

src="admin/img/vehicleimages/Nissan-GTR-Right-Front-Three-Quarter-84895.jpg" class="img-
responsive" alt="image"></a>

<ul>

<li><i class="fa fa-car" aria-hidden="true"></i>Petrol</li>

<li><i class="fa fa-calendar" aria-hidden="true"></i>2019 Model</li>

<li><i class="fa fa-user" aria-hidden="true"></i>5 seats</li>

</ul>

</div>

<div class="car-title-m">

<h6><a href="vehical-details.php?vhid=5"> Nissan GT-R</a></h6>

<span class="price">$2000 /Day</span>

</div>

<div class="inventory_info_m">

<p> The GT-R packs a 3.8-litre V6 twin-turbocharged petrol, which puts ou</p>

</div>

</div>

</div>

<div class="col-list-3">

<div class="recent-car-list">

<div class="car-info-box"> <a href="vehical-details.php?vhid=6"><img


src="admin/img/vehicleimages/Nissan-Sunny-Right-Front-Three-Quarter-48975_ol.jpg" class="img-
responsive" alt="image"></a>

<ul>

BCA 2020-2021 SBMJC-KGF Page 58


CAR RENTAL MANAGEMENT SYSTEM

<li><i class="fa fa-car" aria-hidden="true"></i>CNG</li>

<li><i class="fa fa-calendar" aria-hidden="true"></i>2018 Model</li>

<li><i class="fa fa-user" aria-hidden="true"></i>5 seats</li>

</ul>

</div>

<div class="car-title-m">

<h6><a href="vehical-details.php?vhid=6"> Nissan Sunny 2020</a></h6>

<span class="price">$400 /Day</span>

</div>

<div class="inventory_info_m">

<p>Value for money product and it was so good It is more spacious than ot</p>

</div>

</div>

</div>

<div class="col-list-3">

<div class="recent-car-list">

<div class="car-info-box"> <a href="vehical-details.php?vhid=7"><img


src="admin/img/vehicleimages/2015_Toyota_Fortuner_(New_Zealand).jpg" class="img-responsive"
alt="image"></a>

<ul>

<li><i class="fa fa-car" aria-hidden="true"></i>Petrol</li>

<li><i class="fa fa-calendar" aria-hidden="true"></i>2020 Model</li>

<li><i class="fa fa-user" aria-hidden="true"></i>5 seats</li>

BCA 2020-2021 SBMJC-KGF Page 59


CAR RENTAL MANAGEMENT SYSTEM

</ul>

</div>

<div class="car-title-m">

<h6><a href="vehical-details.php?vhid=7"> Toyota Fortuner</a></h6>

<span class="price">$3000 /Day</span>

</div>

<div class="inventory_info_m">

<p>Toyota Fortuner Features: It is a premium seven-seater SUV loaded with</p>

</div>

</div>

</div>

<div class="col-list-3">

<div class="recent-car-list">

<div class="car-info-box"> <a href="vehical-details.php?vhid=8"><img


src="admin/img/vehicleimages/marutisuzuki-vitara-brezza-right-front-three-quarter3.jpg" class="img-
responsive" alt="image"></a>

<ul>

<li><i class="fa fa-car" aria-hidden="true"></i>Petrol</li>

<li><i class="fa fa-calendar" aria-hidden="true"></i>2018 Model</li>

<li><i class="fa fa-user" aria-hidden="true"></i>5 seats</li>

</ul>

</div>

<div class="car-title-m">

BCA 2020-2021 SBMJC-KGF Page 60


CAR RENTAL MANAGEMENT SYSTEM

<h6><a href="vehical-details.php?vhid=8"> Maruti Suzuki Vitara Brezza</a></h6>

<span class="price">$600 /Day</span>

</div>

<div class="inventory_info_m">

<p>The new Vitara Brezza is a well-rounded package that is feature-loaded</p>

</div>

</div>

</div>

</div>

</div>

</div>

</section>

<!-- /Resent Cat -->

<!-- Fun Facts-->

<section class="fun-facts-section">

<div class="container div_zindex">

<div class="row">

<div class="col-lg-3 col-xs-6 col-sm-3">

<div class="fun-facts-m">

<div class="cell">

<h2><i class="fa fa-calendar" aria-hidden="true"></i>40+</h2>

<p>Years In Business</p>

BCA 2020-2021 SBMJC-KGF Page 61


CAR RENTAL MANAGEMENT SYSTEM

</div>

</div>

</div>

<div class="col-lg-3 col-xs-6 col-sm-3">

<div class="fun-facts-m">

<div class="cell">

<h2><i class="fa fa-car" aria-hidden="true"></i>1200+</h2>

<p>New Cars For Sale</p>

</div>

</div>

</div>

<div class="col-lg-3 col-xs-6 col-sm-3">

<div class="fun-facts-m">

<div class="cell">

<h2><i class="fa fa-car" aria-hidden="true"></i>1000+</h2>

<p>Used Cars For Sale</p>

</div>

</div>

</div>

<div class="col-lg-3 col-xs-6 col-sm-3">

<div class="fun-facts-m">

<div class="cell">

BCA 2020-2021 SBMJC-KGF Page 62


CAR RENTAL MANAGEMENT SYSTEM

<h2><i class="fa fa-user-circle-o" aria-hidden="true"></i>600+</h2>

<p>Satisfied Customers</p>

</div>

</div>

</div>

</div>

</div>

<!-- Dark Overlay-->

<div class="dark-overlay"></div>

</section>

<!-- /Fun Facts-->

<!--Testimonial -->

<section class="section-padding testimonial-section parallex-bg">

<div class="container div_zindex">

<div class="section-header white-text text-center">

<h2>Our Satisfied <span>Customers</span></h2>

</div>

<div class="row">

<div id="testimonial-slider">

<div class="testimonial-m">

<div class="testimonial-content">

<div class="testimonial-heading">

BCA 2020-2021 SBMJC-KGF Page 63


CAR RENTAL MANAGEMENT SYSTEM

<h5>Test</h5>

<p>I am satisfied with their service great job</p>

</div>

</div>

</div>

</div>

</div>

</div>

<!-- Dark Overlay-->

<div class="dark-overlay"></div>

</section>

<!-- /Testimonial-->

<!--Footer -->

<footer>

<div class="footer-top">

<div class="container">

<div class="row">

<div class="col-md-6">

<h6>About Us</h6>

<ul>

<li><a href="page.php?type=aboutus">About Us</a></li>

BCA 2020-2021 SBMJC-KGF Page 64


CAR RENTAL MANAGEMENT SYSTEM

<li><a href="page.php?type=faqs">FAQs</a></li>

<li><a href="page.php?type=privacy">Privacy</a></li>

<li><a href="page.php?type=terms">Terms of use</a></li>

<li><a href="admin/">Admin Login</a></li>

</ul>

</div>

<div class="col-md-3 col-sm-6">

<h6>Subscribe Newsletter</h6>

<div class="newsletter-form">

<form method="post">

<div class="form-group">

<input type="email" name="subscriberemail" class="form-control newsletter-input" required


placeholder="Enter Email Address" />

</div>

<button type="submit" name="emailsubscibe" class="btn btn-block">Subscribe <span


class="angle_arrow"><i class="fa fa-angle-right" aria-hidden="true"></i></span></button>

</form>

<p class="subscribed-text">*We send great deals and latest auto news to our subscribed users very
week.</p>

</div>

</div>

</div>

</div>

BCA 2020-2021 SBMJC-KGF Page 65


CAR RENTAL MANAGEMENT SYSTEM

</div>

<div class="footer-bottom">

<div class="container">

<div class="row">

<div class="col-md-6 col-md-push-6 text-right">

<div class="footer_widget">

<p>Connect with Us:</p>

<ul>

<li><a href="#"><i class="fa fa-facebook-square" aria-hidden="true"></i></a></li>

<li><a href="#"><i class="fa fa-twitter-square" aria-hidden="true"></i></a></li>

<li><a href="#"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a></li>

<li><a href="#"><i class="fa fa-google-plus-square" aria-hidden="true"></i></a></li>

<li><a href="#"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>

</ul>

</div>

</div>

<div class="col-md-6 col-md-pull-6">

<p class="copy-right"></p>

</div>

</div>

</div>

</div>

BCA 2020-2021 SBMJC-KGF Page 66


CAR RENTAL MANAGEMENT SYSTEM

</footer><!-- /Footer-->

<!--Back to top-->

<div id="back-top" class="back-top"> <a href="#top"><i class="fa fa-angle-up" aria-hidden="true"></i>


</a> </div>

<!--/Back to top-->

<!--Login-Form -->

<div class="modal fade" id="loginform">

<div class="modal-dialog" role="document">

<div class="modal-content">

<div class="modal-header">

<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-


hidden="true">&times;</span></button>

<h3 class="modal-title">Login</h3>

</div>

<div class="modal-body">

<div class="row">

<div class="login_wrap">

<div class="col-md-12 col-sm-6">

<form method="post">

<div class="form-group">

<input type="email" class="form-control" name="email" placeholder="Email address*">

</div>

<div class="form-group">

BCA 2020-2021 SBMJC-KGF Page 67


CAR RENTAL MANAGEMENT SYSTEM

<input type="password" class="form-control" name="password" placeholder="Password*">

</div>

<div class="form-group checkbox">

<input type="checkbox" id="remember">

</div>

<div class="form-group">

<input type="submit" name="login" value="Login" class="btn btn-block">

</div>

</form>

</div>

</div>

</div>

</div>

<div class="modal-footer text-center">

<p>Don't have an account? <a href="#signupform" data-toggle="modal" data-dismiss="modal">Signup


Here</a></p>

<p><a href="#forgotpassword" data-toggle="modal" data-dismiss="modal">Forgot Password


?</a></p>

</div>

</div>

</div>

</div><!--/Login-Form -->

<!--Register-Form -->

BCA 2020-2021 SBMJC-KGF Page 68


CAR RENTAL MANAGEMENT SYSTEM

<script>

function checkAvailability() {

$("#loaderIcon").show();

jQuery.ajax({

url: "check_availability.php",

data:'emailid='+$("#emailid").val(),

type: "POST",

success:function(data){

$("#user-availability-status").html(data);

$("#loaderIcon").hide();

},

error:function (){}

});

</script>

<script type="text/javascript">

function valid()

if(document.signup.password.value!= document.signup.confirmpassword.value)

alert("Password and Confirm Password Field do not match !!");

document.signup.confirmpassword.focus();

BCA 2020-2021 SBMJC-KGF Page 69


CAR RENTAL MANAGEMENT SYSTEM

return false;

return true;

</script>

<div class="modal fade" id="signupform">

<div class="modal-dialog" role="document">

<div class="modal-content">

<div class="modal-header">

<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-


hidden="true">&times;</span></button>

<h3 class="modal-title">Sign Up</h3>

</div>

<div class="modal-body">

<div class="row">

<div class="signup_wrap">

<div class="col-md-12 col-sm-6">

<form method="post" name="signup" onSubmit="return valid();">

<div class="form-group">

<input type="text" class="form-control" name="fullname" placeholder="Full Name"


required="required">

</div>

<div class="form-group">

BCA 2020-2021 SBMJC-KGF Page 70


CAR RENTAL MANAGEMENT SYSTEM

<input type="text" class="form-control" name="mobileno" placeholder="Mobile Number"


maxlength="10" required="required">

</div>

<div class="form-group">

<input type="email" class="form-control" name="emailid" id="emailid" onBlur="checkAvailability()"


placeholder="Email Address" required="required">

<span id="user-availability-status" style="font-size:12px;"></span>

</div>

<div class="form-group">

<input type="password" class="form-control" name="password" placeholder="Password"


required="required">

</div>

<div class="form-group">

<input type="password" class="form-control" name="confirmpassword" placeholder="Confirm


Password" required="required">

</div>

<div class="form-group checkbox">

<input type="checkbox" id="terms_agree" required="required" checked="">

<label for="terms_agree">I Agree with <a href="#">Terms and Conditions</a></label>

</div>

<div class="form-group">

<input type="submit" value="Sign Up" name="signup" id="submit" class="btn btn-block">

</div>

</form>

BCA 2020-2021 SBMJC-KGF Page 71


CAR RENTAL MANAGEMENT SYSTEM

</div>

</div>

</div>

</div>

<div class="modal-footer text-center">

<p>Already got an account? <a href="#loginform" data-toggle="modal" data-dismiss="modal">Login


Here</a></p>

</div>

</div>

</div>

</div>

<!--/Register-Form -->

<!--Forgot-password-Form -->

<script type="text/javascript">

function valid()

if(document.chngpwd.newpassword.value!= document.chngpwd.confirmpassword.value)

alert("New Password and Confirm Password Field do not match !!");

document.chngpwd.confirmpassword.focus();

return false;

BCA 2020-2021 SBMJC-KGF Page 72


CAR RENTAL MANAGEMENT SYSTEM

return true;

</script>

<div class="modal fade" id="forgotpassword">

<div class="modal-dialog" role="document">

<div class="modal-content">

<div class="modal-header">

<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-


hidden="true">&times;</span></button>

<h3 class="modal-title">Password Recovery</h3>

</div>

<div class="modal-body">

<div class="row">

<div class="forgotpassword_wrap">

<div class="col-md-12">

<form name="chngpwd" method="post" onSubmit="return valid();">

<div class="form-group">

<input type="email" name="email" class="form-control" placeholder="Your Email address*"


required="">

</div>

<div class="form-group">

<input type="text" name="mobile" class="form-control" placeholder="Your Reg. Mobile*" required="">

</div>

BCA 2020-2021 SBMJC-KGF Page 73


CAR RENTAL MANAGEMENT SYSTEM

<div class="form-group">

<input type="password" name="newpassword" class="form-control" placeholder="New Password*"


required="">

</div>

<div class="form-group">

<input type="password" name="confirmpassword" class="form-control" placeholder="Confirm


Password*" required="">

</div>

<div class="form-group">

<input type="submit" value="Reset My Password" name="update" class="btn btn-block">

</div>

</form>

<div class="text-center">

<p class="gray_text">For security reasons we don't store your password. Your password will be reset
and a new one will be send.</p>

<p><a href="#loginform" data-toggle="modal" data-dismiss="modal"><i class="fa fa-angle-double-left"


aria-hidden="true"></i> Back to Login</a></p>

</div>

</div>

</div>

</div>

</div>

</div>

</div>

BCA 2020-2021 SBMJC-KGF Page 74


CAR RENTAL MANAGEMENT SYSTEM

</div><!--/Forgot-password-Form -->

<!-- Scripts -->

<script src="assets/js/jquery.min.js"></script>

<script src="assets/js/bootstrap.min.js"></script>

<script src="assets/js/interface.js"></script>

<!--Switcher-->

<script src="assets/switcher/js/switcher.js"></script>

<!--bootstrap-slider-JS-->

<script src="assets/js/bootstrap-slider.min.js"></script>

<!--Slider-JS-->

<script src="assets/js/slick.min.js"></script>

<script src="assets/js/owl.carousel.min.js"></script>

</body>

</html>

BCA 2020-2021 SBMJC-KGF Page 75


CAR RENTAL MANAGEMENT SYSTEM

6. CONCLUSION

Car rental business has emerged with a new goodies compared to the past experience where
every activity concerning car rental business is limited to a physical location only. Even though
the physical location has not been totally eradicated; the nature of functions and how these
functions are achieved has been reshaped by the power of internet. Nowadays, customers can
reserve cars online, rent car online, and have the car brought to their door step once the customer
is a registered member or go to the office to pick the car.

The web based car rental system has offered an advantage to both customers as well as Car
Rental Company to efficiently and effectively manage the business and satisfies customers’ need
at the click of a button.

BCA 2020-2021 SBMJC-KGF Page 76


CAR RENTAL MANAGEMENT SYSTEM

7. FUTURE ENCHANCEMENT

Some ideas and features can be considered as a future work for this project. These features can
be summarized in the following points:

 Users are using system software for renting the car , Using updated version in the
future the users can rent the cars in a smart way using SMART PHONES.
 Travelling can be over. Whelming especially when you have more location to the
next. Renting a LUXUR CAR can make your vacation more comfortable
 A bright future for all car rental we are implementing smart tricks and
technologies to stand out in the market.

BCA 2020-2021 SBMJC-KGF Page 77


CAR RENTAL MANAGEMENT SYSTEM

8. BIBLOGRAPY

Books Referred:

Beginning PHP6, Apache, MYSQL, Web Development by Timothy Boronczyk

Learning PHP, MYSQL, & JavaScript: With JQuery, CSS & HTML by Robin Nixon

Websites Referred:

www.google.com

www.w3schools.com

BCA 2020-2021 SBMJC-KGF Page 78

You might also like