-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
49 lines (40 loc) · 1.23 KB
/
index.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<?php
$pageTitle = 'Home';
$pageHeading = 'Welcome to Gloucestershire Constabulary BikeWatch';
$pageSubHeading = 'Please Login or Register to add, view or report a new bike';
?>
<html>
<head>
<!-- Head Content -->
<?php include('templates/head.php');?>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Page Container -->
<div class="container">
<!-- Page Navigation -->
<?php include('templates/navigation.php'); ?>
<!-- Page Header -->
<?php include('templates/header.php');?>
<!-- Page Content -->
<main>
<div class="small-container">
<a class="button login" href="login/login.php"> Login </a>
<a class="button register" href="user/register/register.php"> Register </a>
<br>
<br>
<br>
<br>
<br>
<br>
<div class="center-container">
<a class="button police-login" href="login/login.php"> Police Login </a>
</div>
</div>
</main>
</div>
<!-- Page Footer -->
<?php include('templates/footer.php');?>
</body>
</html>