-
Notifications
You must be signed in to change notification settings - Fork 1
/
add.html
38 lines (38 loc) · 1.1 KB
/
add.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
<!doctype html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="styles/styles.css">
<link type="text/css" rel="stylesheet" href="styles/circle.css">
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="//www.parsecdn.com/js/parse-1.6.14.min.js"></script>
<script src="https://algorithmia.com/v1/clients/js/algorithmia-0.2.0.js" type="text/javascript"></script>
<script src="js/empty.js"></script>
<title>ReFresh</title>
<meta name="viewport" content="width=device-width, initial-scale=.8">
</head>
<body style="margin-top:200px;">
<div id="navbar" style="margin-top:-200px;">
<a href="index.html">
<h1>ReFresh</h1>
</a>
</div>
<div class="mainbutton first">
Upload receipt
</div>
<input id="fileupload" type="file" onchange="previewFile(false)"><br>
<a href="list.html">
<div class="mainbutton second">
Add manually
</div>
</a>
<div id="footer">
<a href="index.html">
<div id="backbutton">
<h1>Back</h1>
</div>
</a>
</div>
</body>
</html>