-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
38 lines (29 loc) · 1.38 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
<?php
include("the_head.php");
?>
<html>
<head>
<title>Food Donations Tracker</title>
<!-- JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="assets/js/bootstrap.js"></script>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
</head>
<body>
<div class="top_bar">
<div class="logo">
<h4 class="thetitle"><a style = "color:white; padding-left:10px;" href="index.php">Donated Food Tracker</a></h4>
</div>
</div>
<div class="wrapper">
<div class="initial_choice">
<h3>Welcome to Donated Food Tracker</h3> <br>
<button type="button" onclick="window.location.href = 'main.php';" class="btn btn-outline-dark btn-lg">Main Page</button>
<button type="button" onclick="window.location.href = 'register_login.php';" class="btn btn-outline-dark btn-lg">Register/Login</button>
</div>
</div>
</body>
</html>