-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 1.86 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Printable Check</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap" rel="stylesheet"> <!-- Add Google Font -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="check-list">
<div class="check-container" id="check-template">
<button class="delete-check-button" onclick="deleteCheck(this)" aria-label="Delete Check">✖</button>
<div class="check-header">
<input type="text" class="input-field" placeholder="Bank Name" style="font-weight: bold; font-size: 1.1em; width: 50%;">
<span>Date: <input type="date" class="input-field" onfocus="this.showPicker()"></span>
</div>
<div class="check-body">
<div style="flex: 1;">
<label class="label">Pay to the order of:</label>
<input type="text" class="input-field" placeholder="Payee Name">
</div>
<div>
<label class="label">Amount:</label>
<div style="display: flex; align-items: center;">
<span style="margin-right: 5px;">₱</span>
<input type="text" class="input-field" placeholder="0.00" style="width: 100%;">
</div>
</div>
</div>
<div class="check-body">
<label class="label">Amount in words:</label>
<input type="text" class="input-field" placeholder="Amount in words">
</div>
<div class="check-footer">
<span>Authorized Signature:</span>
<input type="text" class="input-field" placeholder="Signature" style="width: 50%;">
</div>
</div>
</div>
<div class="print-button-container">
<button class="action-button" onclick="addCheck()">➕ Add Check</button>
<button class="print-button" onclick="printCheck()">Print All Checks</button>
</div>
<script src="script.js"></script>
</body>
</html>