-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
45 lines (44 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en" style="height:100%;">
<head>
<meta charset="utf-8">
<title>Davis Pantry</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/css/style.css">
</head>
<body id="home-section">
<?php require_once('assets/includes/header.html') ?>
<!-- HOME SECTION -->
<div class="container position-absolute" id="login-section">
<div class="row">
<div class="col mx-auto" style="max-width: 600px;">
<div class="card card-form text-center mt-4">
<div class="row">
<div class="col text-center">
<div class="card-body">
<h3 class="mb-3">Find food near your location</h3>
<form class="form-inline" method="post" action="" onsubmit="return validate(this)">
<input class="form-control w-75" type="search" placeholder="Enter location" aria-label="Search">
<input type="submit" value="Search" class="btn btn-outline-primary w-25">
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer class="bg-white position-absolute w-100" id="main-footer">
<div class="container bg-faded">
<div class="row">
<div class="col text-center">
<div class="py-2" id="footer-text">
<h5>Davis Pantry</h5>
<p>Copyright © 2018</p>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>