-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwelcome.php
More file actions
37 lines (30 loc) · 1013 Bytes
/
welcome.php
File metadata and controls
37 lines (30 loc) · 1013 Bytes
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
<?php
session_start();
if(!isset($_SESSION['username']) || empty($_SESSION['username'])){
header("location: login.php");
exit;
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.css">
<style type="text/css">
body{ font: 14px sans-serif; text-align: center; }
</style>x
</head>
<body style="background-color: #000000">
<div class="page-header">
<h1 style="color: #ffff00">Welcome to Park.Le !</h1>
</div>
<p>
<a href="form.php" class="btn btn-primary">Enter your details</a>
<a href ="upcoming.php" class="btn btn-primary">Upcoming events</a>
<a href="Booking.php" class="btn btn-primary">Book your Parking</a>
<a href="support.php" class="btn btn-primary">Support</a>
<a href="logout.php" class="btn btn-danger">Sign Out of Your Account</a>
</p>
</body>
</html>