-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgivefood.html
70 lines (61 loc) · 3.1 KB
/
givefood.html
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pantry Share</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/uikit.min.css" />
<link rel="stylesheet" href="./css/style.css" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/uikit-icons.min.js"></script>
</head>
<body>
<div>
<h1 class="uk-heading-large"><img src="assets/pantry-share-large.png"></h1>
</div>
<nav class="uk-navbar-container" id="uk-navbar">
<div class="uk-navbar-left">
<ul class="uk-navbar-nav">
<li class="uk-active" id="home"><a href="index.html">Home</a></li>
<li class="uk-active" id="find-food"><a href="findfood.html">Find Food</a></li>
<li class="uk-active" id="give-food"><a href="givefood.html">Give Food</a></li>
<li class="uk-active" id="about-us"><a href="aboutus.html">About Us</a></li>
</ul>
</div>
</nav>
<hr>
<section class="">
<div id="post-food">
<h1>Give Food Here</h1>
<p class="warning" id="zip-warning"></p>
<form>
<input class="uk-input" id="food-name" placeholder="e.g. Jane"></input>
<input class="uk-input" id="food-address" placeholder="Address"></input>
<input class="uk-input" id="food-zip" placeholder="Zip Code"></input>
<input class="uk-input" id="food-desc" placeholder="Description"></input>
<select class="uk-select">
<option id="persh">Perishable</option>
<option id="non-persh">Non-perishable</option>
</select>
<input type="submit" id="post-food-button" />
</form>
</div>
<div id="give-places">
<!-- Filter by Zip Code button and render of list of stuff for now-->
</div>
</section>
</div>
<footer class="page-footer">© Ana Medrano, Stephon Autery, and Dan Fellows 2020</footer>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/7.13.1/firebase-app.js"></script>
<!-- Specific Firebase products we want (Database) -->
<script src="https://www.gstatic.com/firebasejs/7.13.1/firebase-database.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/7.13.1/firebase-analytics.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="./js/google-geocoding.js"></script>
<script src="./js/foodpantries.js"></script>
<script src="./js/script.js"></script>
</body>
</html>