-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
27 lines (23 loc) · 874 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Finder - Lost and Found Application</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php include 'php/header.php'; ?>
<div class="home-container">
<div class="logo"><img src="assets/full_logo_white.svg" alt="Finder Logo"> </div>
<p class="description">A secure lost and found application built to manage, protect, and return your misplaced
possessions safely.</p>
<div class="buttons">
<a href="php/login.php" class="button">Login</a>
<a href="php/user_type.php" class="button">Register</a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>