-
Notifications
You must be signed in to change notification settings - Fork 0
/
rentalApplicationResidentialHistory.php
87 lines (65 loc) · 1.71 KB
/
rentalApplicationResidentialHistory.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
//pull unitID from the URL
$unitID = $_GET["unitID"];
?>
<!doctype html>
<html>
<head>
<title>Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="css/main.css" media="screen" />
</head>
<body>
<div class="wrapper">
<nav>
<?php include_once('navigation.php')?>
</nav>
<header>
</header>
<main>
<h2>Apply</h2>
<form action="confirmRentalApplication.php.?unitID=<?php echo $unitID;?>" method="post">
<legend>Personal Information</legend>
<table>
<tr>
<td>First Name</td>
<td><input type="text" name="firstName"></td>
</tr>
<tr>
<td>MI</td>
<td><input type="text" name="middleInitial"></td>
</tr>
<tr>
<td><label>Last Name</label></td>
<td><input type="text" name="lastName"></td>
</tr>
<tr>
<td><label>Date of Birth</label></td>
<td><input type="date" name="dateOfBirth"></td>
</tr>
<tr>
<td>Phone Number (Primary)</td>
<td><input type="tel" name="phoneNumberPrimary"></td>
</tr>
<tr>
<td><label>Phone Number (Alternate)</td>
<td><input type="tel" name="phoneNumberAlternate"></td>
</tr>
<tr>
<td>Email</td>
<td><input type="email" name="email"></td>
</tr>
</table>
<label>Who else will be living with you?</label><br>
<textarea name="roommates" rows="4" cols="36"></textarea><br>
<input type="submit" value="Submit">
</form>
</main>
<div style="clear: both;"> </div>
<footer>
Copyright © 2017 ECU Web Technologies Inc<br>
<a href="mailto:ecuwebtechinc@.ecu.edu">ecuwebtech.com</a>
</footer>
</div>
</body>
</html>