-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
88 lines (71 loc) · 3.05 KB
/
index.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Easy Till Mate!</title>
</head>
<body>
<div class="container">
<header>
<h1>Easy Till</h1>
<img src="images/iconfinder___money_transaction_transfer_send_3668846.svg" alt="">
<h3>700$ is your Float!</h3>
</header>
<div class="count-money">
<h2>Menu > Takings > Open Cash Drawer</h2>
<h4>How many Package coins you have?</h4>
<div class="package-coins">
2$<input type="number" id="p-two" onchange="getPackageTotal()">
1$<input type="number" id="p-one" onchange="getPackageTotal()">
0.50<input type="number" id="p-zero-fifty" onchange="getPackageTotal()">
0.20<input type="number" id="p-zero-twenty" onchange="getPackageTotal()">
</div>
<div class="totals">
<h5 id="p-total"></h5>
<h5 id="p-float"></h5>
</div>
<h4>How many Till coins you have?</h4>
<div class="package-coins">
2$<input type="number" id="t-two"
onchange="getTillTotal()">
1$<input type="number" id="t-one"
onchange="getTillTotal()">
0.50<input type="number" id="t-zero-fifty"
onchange="getTillTotal()">
0.20<input type="number" id="t-zero-twenty"
onchange="getTillTotal()">
</div>
<div class="totals">
<h5 id="t-total"></h5>
<h5 id="t-float"></h5>
</div>
<h4>How many Notes you have?</h4>
<div class="package-coins">
5$<input type="number" id="n-five"
onchange="getNotesTotal()">
10$<input type="number" id="n-ten"
onchange="getNotesTotal()">
20$<input type="number" id="n-twenty"
onchange="getNotesTotal()">
50$<input type="number" id="n-fifty"
onchange="Profit()">
</div>
<div class="totals-notes">
<h5 id="n-total"></h5>
<h5 id="n-float"></h5>
</div>
<span class="profit" id="profit"></span>
<h2 class="denominations">Cash Button > Denominations > Number Notes Profit > Apply</h2>
</div>
<div class="efpos">
<h1>EFPOS</h1>
<h2>Menu (silver button) > 1. EFPOS > 2. Totals</h2>
<h2>1. Settlement > Total EFT > Get the total put on the system! </h2>
<h1>DONE MATE</h1>
</div>
</div>
</body>
<script src="javascript/script.js"></script>
</html>