-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (30 loc) · 1.48 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
36
<!DOCTYPE html>
<html>
<head>
<title>Waste Not</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src='https://cdn.rawgit.com/naptha/tesseract.js/1.0.10/dist/tesseract.js'></script>
<script src="functionality.js"></script>
<!-- <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous"> -->
<link rel="stylesheet" href="style.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<div class="container">
<h1>Waste Not</h1>
<p id="upload-help" class="upload-help">Upload your grocery receipt. We’ll scan your food items and let you know when they’re about to expire!</p>
<div class="upload-container">
<input id="upload" class="upload" name="upload" type="file" accept="image/gif, image/jpeg, image/png" aria-labelledby="upload-help" />
<div class="receipt-container">
<img id="receipt" class="receipt" />
<div id="loading" class="loading-container" hidden="hidden">
<img class="loading" src="balls.svg" />
<p class="loading-text">Analyzing text…</p>
</div>
</div>
<ul id="food" class="food"></ul>
</div>
<!-- <div id="progress"></div> -->
</div>
</body>
</html>