forked from fac/invoice-devkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·165 lines (148 loc) · 5.71 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
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<title>FreeAgent Invoice Devkit</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link href="base.css" rel="stylesheet" type="text/css" />
<!-- NOTHING IN THIS FILE SHOULD BE EDITED EXCEPT THESE PATHS TO YOUR THEME STYLESHEETS -->
<link href="styles/bauhaus.css" rel="stylesheet" type="text/css" />
<link href="styles/bauhaus_print.css" media="print" rel="stylesheet" type="text/css" />
<!-- NOTHING IN THIS FILE SHOULD BE EDITED EXCEPT THESE PATHS TO YOUR THEME STYLESHEETS -->
</head>
<body>
<div id="invoice" class="pagestyle">
<div id="invoice-header">
<img alt="Mainlogo_large" class="logo screen" src="images/freeagent_logo.png" />
<div class="vcard" id="company-address">
<div class="fn org">
<strong>
Company Name
</strong>
</div>
<div class="adr">
<div class="street-address">
Street Address line<br/>
2nd Street Address<br />
</div>
<div class="locality">Locality</div>
<div id="company-postcode">
<span class="region">Region</span> <span class="postal-code">EX12 8PZ</span>
</div>
</div>
<div class="email">
</div>
<div id="sales-tax-reg-number">
SALES TAX: 1234567
</div>
</div>
</div>
<div id="invoice-info">
<h2>
Invoice <strong>INV001</strong>
</h2>
<h3>
20 January 2016
</h3>
<p id="payment-terms">Payment Terms: 30 days</p>
<p id="payment-due">Payment due by 18 February 2016</p>
<p id="payment-total">£2643.75</p>
</div>
<div class="vcard" id="client-details">
<div class="fn">
John Doe
</div>
<div class="org">
Client Company
</div>
<div class="adr">
<div class="street-address">
Client Street Address<br/>
Street Address 2<br />
Street Address 3
</div>
<div class="locality">
LOCALITY
</div>
<div id="client-postcode"><span class="region">Region</span> <span class="postal-code">MV2 8SX</span></div>
<div id="your-tax-number">
SALES TAX: 193528491
</div>
</div>
</div>
<table id="invoice-amount">
<thead>
<tr id="header_row">
<th class="quantity_th">Quantity</th>
<th class="left details_th">Details</th>
<th class="unitprice_th">Unit Price (£)</th>
<th class="salestax_th">VAT</th>
<th class="subtotal_th">Net Subtotal (£)</th>
</tr>
</thead>
<tfoot>
<tr id="discount_tr">
<td colspan="2"> </td>
<td colspan="2" class="item_r">10% Discount</td>
<td class="item_r">£250.00</td>
</tr>
<tr id="net_total_tr">
<td colspan="2"> </td>
<td colspan="2" class="item_r">Net Total</td>
<td class="item_r">2250.00</td>
</tr>
<tr id="vat_tr">
<td colspan="2"> </td>
<td colspan="2" class="item_r">VAT</td>
<td class="item_r">393.75</td>
</tr>
<tr id="total_tr">
<td colspan="2"> </td>
<td colspan="2" class="total" id="total_currency"><span class="currency">GBP </span> Total</td>
<td class="total">£2643.75</td>
</tr>
</tfoot>
<tbody>
<tr class="item odd">
<td class="item_l">1 Day</td>
<td class="item_l">Details of project activity to be billed</td>
<td class="item_r">500.00</td>
<td class="item_r">17.5%</td>
<td class="item_r">500.00</td>
</tr>
<tr class="item">
<td class="item_l">2 Days</td>
<td class="item_l">Other Details of project activity to be billed</td>
<td class="item_r">1000.00</td>
<td class="item_r">17.5%</td>
<td class="item_r">1000.00</td>
</tr>
<tr class="item odd">
<td class="item_l">2 Days</td>
<td class="item_l">More d etails of project activity to be billed </td>
<td class="item_r">1500.00</td>
<td class="item_r">17.5%</td>
<td class="item_r">1000.00</td>
</tr>
</tbody>
</table>
<div id="invoice-other">
<h2>Other Information</h2>
<div id="company-reg-number"><strong>Company Registration Number:</strong> 9273109</div>
<div id="contract-number"><strong>Contract/PO:</strong> PO 87227643</div>
</div>
<div id="payment-details">
<h2>Payment Details</h2>
<div id="bank_name">Bank Name</div>
<div id="sort-code"><strong>Bank/Sort Code:</strong> 32-75-97</div>
<div id="account-number"><strong>Account Number:</strong> 28270761</div>
<div id="iban"><strong>IBAN:</strong> 973547</div>
<div id="bic"><strong>BIC:</strong> 220197</div>
<div id="payment-reference"><strong>Payment Reference:</strong> INV001</div>
</div>
<div id="comments">
Payment should be made by bank transfer or cheque made payable to John Smith.
</div>
</div>
</body>
</html>