-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcategorize-receipt.html
More file actions
110 lines (98 loc) · 3.56 KB
/
categorize-receipt.html
File metadata and controls
110 lines (98 loc) · 3.56 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<!-- Copyright (c) 2012-2016 Adobe Systems Incorporated. All rights reserved.
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License. -->
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/grid.css" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Poppy</title>
</head>
<body>
<div class="app">
<div class="section header white-background">
<div class="container">
<div class="row">
<div class="column large-4 medium-4 small-4 float-left">
<a href="index.html"><img src="images/home.png"></a>
</div>
<div class="column large-4 medium-4 small-4">
<a href="index.html"><h1>Poppy</h1></a>
</div>
<div class="column large-4 medium-4 small-4">
<!-- empty column -->
</div>
</div>
</div>
</div>
<div class="section offset">
<div class="container">
<div class="row">
<div class="column large-12 medium-12 small-12">
<!-- start of form -->
<form method="post" action="form.php" id="poppy-form">
<div class="row">
<label>Vendor Name</label>
<input type="text" name="name" class="validate">
<!-- <p>Please enter the vendor's name</p> -->
</div>
<div class="row">
<label>Date</label>
<input type="date" name="date" class="validate">
<!-- <p>Please enter the date of purchase</p> -->
</div>
<!-- <div class="row submit-button">
<input type="submit" name="submitButton" value="Save">
</div> -->
</div>
</div>
</div>
</div>
<div class="section thumbnail">
<div class="container">
<div class="row">
<div class="column large-12 medium-12 small-12">
<!-- thumbnail of receipt here -->
<img class="the-photo" src="">
</div>
</div>
</div>
</div>
<div class="section footer blue-background">
<div class="container">
<div class="row">
<div class="column large-12 medium-12 small-12">
<a href="details-of-receipt.html"><img src="images/save.png"></a>
</div>
<!-- end of form -->
</form>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/jquery-3.1.1.min.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
</script>
</body>
</html>