-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Generate Bill</title>
<script src="js/util.js"></script>
</head>
<body>
<label for="invoiceNumber">Invoice Number:</label>
<input type="text" name="invoiceNumber" id="invoiceNumberInput">
<br>
<label for="dateInput">Select Date</label>
<input type="date" name="dateInput" id="dateInput">
<br>
<label for="partyName">Party Name:</label>
<input type="text" name="partyName" id="partyNameInput">
<br>
<label for="gstn">GSTN:</label>
<input type="text" name="gstn" id="gstnInput">
<br>
<label for="gstRate">Select GST Rate</label><br>
<input type="radio" name="gstRate" value="5" id = "rate_5"> 5%<br>
<input type="radio" name="gstRate" value="12"id = "rate_12"> 12%<br>
<input type="radio" name="gstRate" value="18"id = "rate_18"> 18%<br>
<input type="radio" name="gstRate" value="28"id = "rate_28"> 28%<br>
<!-- <img src="download.jpg" alt=""> -->
<label for="amount">Amount:</label>
<input type="text" name="amount" id="amountInput">
<br>
<label for="totalAmount">Total Amount</label>
<input type="text" name="totalAmount" id="totalAmountInput">
<br>
<button id="calculateButton" onclick="calculate()">Calculate</button>
</body>
</html>