This page was made as a personal project in connection with an educational exercise.
This is NOT the official site of the company or brand identified on the page. The creator of this page is NOT affiliated with the company or brand in any way. DO NOT enter any personal information (such as logins, passwords or credit card numbers) on this site.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathinvoice_edit.html
148 lines (145 loc) · 3.95 KB
/
invoice_edit.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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Edit invoice</title>
<link rel="stylesheet" href="./Style/invoice_edit.css" />
</head>
<body>
<div id="logo"><a href="Dashboard_page.html"><img src="https://app.hellobonsai.com/assets/logo-icon-6263c52498bd8749917ac337dfcb797432a7d3df25bc04e1a5ce2b0e7451268e.png" alt=""></a></div>
<div id="send_div">
<button id="send_now">Send Now</button>
</div>
<div id="main-div">
<div id="top-section">
<h4
id="invoice_num"
style="display: flex; justify-content: flex-end; margin-top: 0px"
></h4>
<div>
<h1 id="invoice_name">Invoice</h1>
</div>
</div>
<hr />
<div id="mid-section">
<div id="left-mid-section">
<div>
<p>FROM</p>
<input type="text" id="sender-name" />
<br />
<input
type="text"
id="sender-company"
placeholder="Your Company, LLC"
/>
<br />
<input
type="text"
name=""
id="Sender-address"
placeholder="Your Address"
/>
<br />
<h4 id="sender-email" style="font-weight: 540"></h4>
</div>
<div id="sender-date">
<h4 style="font-weight: 100">ISSUED ON</h4>
<h4 ></h4>
</div>
</div>
<div id="right-mid-section">
<div>
<p>TO</p>
<input type="text" id="client-name" />
<br />
<input
type="text"
id="client-company"
placeholder="Client Company,LLC"
/>
<br />
<input
type="text"
name=""
id="client-address"
placeholder="Client Address"
/>
<br />
<h4 id="client-email" style="font-weight: 540"></h4>
</div>
<div>
<h4 style="font-weight: 100">DUE Date</h4>
<h4 id="due-date"></h4>
</div>
</div>
</div>
<hr />
<div id="second-mid-section">
<h3 id="project-name" style="padding-left: 30px;"></h3>
<div id="item-details">
<div>
<h4>ITEM NAME</h4>
<input
type="text"
name=""
id="item-name"
placeholder="Example Item"
/>
</div>
<div>
<h4>UNITS</h4>
<input
type="text"
id="unit"
class="pricing"
oninput="calculatetotal()"
/>
</div>
<div>
<h4>RATE (INR)</h4>
<input
type="number"
id="rate_item"
class="pricing"
oninput="calculatetotal()"
/>
</div>
<div>
<h4>TOTAL</h4>
<h4 id="total"></h4>
</div>
</div>
</div>
<hr />
<div id="third-mid-section">
<div>
<h4>Subtotal</h4>
<h4 id="subtotal"></h4>
</div>
<div>
<div style="display: flex">
<input
type="number"
id="tax"
class="pricing"
oninput="calculatetotal()"
style="height: 20px; width: 40px"
/>
<h4 style="margin-top: 4px">% Tax</h4>
</div>
<div id="total-tax">
<h4 id="total-tax"></h4>
</div>
</div>
<hr />
<div>
<h4>Total Amount</h4>
<h4 id="total-amount"></h4>
</div>
</div>
</div>
</body>
</html>
<script src="./Script/invoice_edit.js"></script>