-
Notifications
You must be signed in to change notification settings - Fork 0
/
addPropertyForm.php
65 lines (54 loc) · 1.17 KB
/
addPropertyForm.php
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
<!doctype html>
<html>
<head>
<title>Title</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<div class="wrapper">
<nav>
<?php include_once('navigation.php')?>
</nav>
<header>
<h1>Add a New Property</h1>
</header>
<main>
<form action="addProperty.php" method="post">
<table>
<tr>
<td>Address</td>
<td><input type="text" name="address"></td>
</tr>
<tr>
<td>Date Available</td>
<td><input type="date" name="dateAvailable"></td>
</tr>
<tr>
<td>Advertise</td>
<td><input type="int" name="advertised"></td>
</tr>
<tr>
<td>Rent Amount</td>
<td><input type="text" name="rentAmount"></td>
</tr>
<tr>
<td>Square Feet</td>
<td><input type="text" name="squareFeet"></td>
</tr>
<tr>
<td>Bedrooms</td>
<td><input type="text" name="bedrooms"></td>
</tr>
<tr>
<td>Bathrooms</td>
<td><input type="text" name="bathrooms"></td>
</tr>
</table>
<input type="submit" value="Add Unit">
</form>
</main>
<footer>
<?php include_once('footer.php')?>
</footer>
</body>
</html>