-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome.php
31 lines (27 loc) · 971 Bytes
/
welcome.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
<!DOCTYPE html>
<head>
<title>Parking System</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link href="css/style.css" rel="stylesheet"> <!-- Include CSS -->
</head>
<style>
.jumbotron {
background-color: #f4511e;
color: white;
}
</style>
<body>
<div class="jumbotron text-center">
<H1>Automated Parking System</H1>
<p>Parking made easier.</p>
</div>
<div class="container">
<h2>New Parking</h2>
<h4>Book a slot now</h4>
<a href="availability.php" class="btn btn-default btn-lg" role="button">Book/Availability</a>
<a href="book.php" class="btn btn-default btn-lg" role="button">Sign In/Out</a>
</div>