-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (69 loc) · 2.74 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
<!doctype html>
<html>
<head>
<title>Invoice Builder</title>
<link href="style.css" rel="stylesheet">
<script src="config.js"></script>
</head>
<body>
<article id="input">
<h1><span class="company_name"></span> Invoice Builder</h1>
<form id="invoice_data">
<input type="text" placeholder="Invoice ID" name="invoice_id" id="invoice_id_input">
<input type="date" name="date" id="date_input">
<input type="text" placeholder="Client Name" name="client_name" id="client_name_input">
<textarea placeholder="Client Address" name="client_address" id="client_address_input"></textarea>
<textarea placeholder="Work Description" name="work_description" id="work_description_input"></textarea>
<input type="text" placeholder="Price excl VAT" name="excl_vat_price" id="excl_vat_price_input">
<input type="submit">
</form>
</article>
<article id="output">
<p class="right">
<img id="logo" src="" alt="Developer Mountain" />
</p>
<h1><span class="company_name"></span> Invoice ref - <span id="invoice_id"></span></h1>
<h2>Invoice date: <span id="date"></span></h2>
<section>
<h3>Your details</h3>
<p>
<span id="client_name"></span>
</p>
<address>
<span id="client_address"></span>
</address>
</section>
<section>
<h3>Our details</h3>
<p id="company_name"></p>
<address class="company_address">
</address>
</section>
<section>
<h3>The work</h3>
<p><span id="work_description"></span></p>
<p>Price excluding VAT: £<span id="excl_vat_price"></span></p>
<p>VAT charged: £<span id="vat_charged"></span></p>
<p>Price including VAT: £<span id="incl_vat_price"></span></p>
</section>
<div class='row'>
<section>
<h3>Payment details</h3>
<p>Bank: <span class="bank"></span></p>
<p>Name: <span class="company_name"></span></p>
<p>Sort code: <span class="bank_sort_code"></span></p>
<p>Account Number: <span class="bank_account_number"></span></p>
</section>
<section>
<h3>Legal info</h3>
<p>Payments are to be made within <span class="payment_days"></span> days.</p>
<p>The directors of <span class="company_name"></span> are <span class="company_directors"></span></p>
<p>Company no: <span class="company_number"></span></p>
<p>VAT no: <span class="comapny_vat_number"></span></p>
<p>Date of incorporation: <span class="company_incorporation_date"></span></p>
</section>
</div>
</article>
<script src="script.js"></script>
</body>
</html>