-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (34 loc) · 1.2 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Food Planner by SureSRM</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css"/>
<!-- Latest Sortable -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sortable.umd.min.js"></script>
<!-- Latest JS-YAML -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js-yaml.min.js"></script>
<!-- My CSS -->
<link rel="stylesheet" href="style.css"/>
<!-- My JS -->
<script src="script.js" async></script>
</head>
<body>
<div class="section calendar" >
<h1 class=section_header>Calendar</h1>
<div id="calendar_row" class="collection_row">
</div>
</div>
<div class="section pantries">
<h1 class=section_header>Pantry</h1>
<div id="pantry_row" class="collection_row">
</div>
</div>
<form class="my-form">
<input type="file" id="fileElem" multiple=false onchange="handleFile(this.files)">
</form>
<button id="clean_menu_btn">Clean Menu</button>
<button id="clean_pantry_btn">Clean Pantry</button>
</body>
</html>