-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtenants.html
49 lines (39 loc) · 1.21 KB
/
tenants.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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>TENANTS REGISTRATION FORM</title>
</head>
<body background="adminlogin.png"><br><br><br>
<center><h1>TENANTS REGISTER HERE</h1></center>
<fieldset><center>
<legend><strong>TENANT REGISTRATION</strong></legend><br><br>
<form action="tenants.php" method="post" />
<table>
<tr>
<td>Block no *:</td><td><input type="number" name="blockno" min="37" max="42" required/><br /></td>
</tr>
<tr>
<td>Flat no *:</td><td><input type="text" name="flatno" required/><br /></td>
</tr>
<tr>
<td>House no *:</td><td><input type="text" name="houseno" required/><br /></td>
</tr>
<tr>
<td>Tenant name *:</td><td><input type="text" name="tname" required/><br /></td>
</tr>
<tr>
<td>Tenant joining date *:</td><td><input type="date" name="tjoined" required/><br /></td>
</tr>
<tr>
<td>No of tenants *:</td><td><input type="number" name="notenants" required/><br /></td>
</tr>
<tr>
<td>phone1 *:</td><td><input type="number" name="phone1" maxlength="10" required/><br /></td>
</tr>
</table>
<br><br><input type="submit" value="Tenant Registration">
</form>
</fieldset>
<br />
<center></body>
</html>