forked from SouICry/fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_receiptPictureEnterPrice.html
More file actions
39 lines (34 loc) · 1.57 KB
/
_receiptPictureEnterPrice.html
File metadata and controls
39 lines (34 loc) · 1.57 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
<div class="container text-center box" id="receipt-pic">
<div class="row">
<div class="col-xs-12" id="receipt-button-box-outer">
<h2>Receipt</h2>
</div>
</div>
<div class = "row">
<div class="col-sm-8 col-sm-offset-2 col-xs-10 col-xs-offset-1 col-lg-6 col-lg-offset-3" id="receipt-button-box">
<div class="input-field">
<input type="text" class="form-control" name="username" id="enter_price_receipt"/><br>
<label for="enter_price_receipt">Enter the price:</label>
</div>
<label class="btn waves-effect orange">
Upload Receipt Image<input class="hidden" type="file" id="uploadReceipt1" name="imageLoader"/>
</label>
<a class="btn waves-effects orange disabled" id="submitReceiptButton1">Submit</a>
<a class="btn waves-effects orange" id="cancelRecButton1">Cancel</a>
</div>
</div>
<div class = "row">
<div class="col-xs-12 col-md-6">
<div id="receipt-outer"
style="width: 500px;max-width: 100%; overflow: hidden; height: 800px;position: relative; margin: auto;">
<canvas style=" position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(90deg)"
width="800" height='500' id="receipt_canvas1"></canvas>
</div>
</div>
</div>
</div>
<div class="footerBars container">
<div class="footer2"></div>
<div class="footer3"></div>
</div>
<script src="js/_receiptPictureEnterPrice.js"></script>