forked from johnsonte1/AsURent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contractForm.html
53 lines (50 loc) · 1.14 KB
/
contractForm.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
<!DOCTYPE html>
<html>
<head>
<title>Contract Form</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div>
<div class="fadeColors">
<h1 align="center"><p class="firstTent">AsURent</p>Contract</h1>
</div>
<form action="" method="post">
<fieldset>
<table>
<legend class="tent">Please fill out the following contract information</legend>
<tr>
<td>Contract Id:</td>
<td><input type="text" name="contractId"></td>
</tr>
<tr>
<td>Lanlord Id:</td>
<td><input type="text" name="lanlordId"></td>
</tr>
<tr>
<td>Tenant Id:</td>
<td><input type="text" name="tenantId"></td>
</tr>
<tr>
<td>Address:</td>
<td><input type="date" name="address" placeholder="street city, state zip"></td>
</tr>
<tr>
<td>Start Date:</td>
<td><input type="text" name="startDate"></td>
</tr>
<tr>
<td>End Date:</td>
<td><input type="endDate"></td>
</tr>
</table>
</fieldset><br>
<input type="submit" value="Submit Contract">
<input type="reset" value="Restart">
</form>
</div>
<footer>
<p>® AsURent</p>
</footer>
</body>
</html>