-
Notifications
You must be signed in to change notification settings - Fork 0
/
recepite.html
54 lines (50 loc) · 1.88 KB
/
recepite.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="recepite.css">
</head>
<body>
<script src="receipt.js"></script>
<div class="box"></div>
<p id="g">Generate Free Rent Receipts</p>
<div class="container">
<div class="inputs one">
<b class="r">Rent Amount</b><br>
<input type="number" autocomplete="off" id="rentamount" required>
</div>
<div class="inputs two">
<b class="r">Property Address</b><br>
<input type="text" autocomplete="off" id="proadd" required>
</div>
<div class="inputs three">
<b class="r">Landlord Name</b><br>
<input type="text" autocomplete="off" id="landlaord" required>
</div>
<div class="inputs four">
<b class="r">Landlord Pan</b><br>
<input type="number" autocomplete="off" >
</div>
<div class="inputs five">
<b class="r">Recepite start date</b><br>
<input type="date" autocomplete="off" id="Rstart" required>
</div>
<div class="inputs six">
<b class="r">Recepite End date</b><br>
<input type="date" autocomplete="off" id="Rend" required>
</div>
<div class="inputs seven">
<b class="r">Tenant Name</b><br>
<input type="text" autocomplete="off" id="buy" required>
</div>
<div class="inputs Eight">
<b class="r">Tenant Moblile</b><br>
<input type="tel" autocomplete="off" required>
</div>
<div class="inputs nine">
<b class="r">Email</b><br>
<input type="email" autocomplete="off" required>
</div>
</div>
<a href="money receipt.html"><button type="submit" onclick="money()">Download Receipt</button></a>
</body>
</html>