-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsubmitAppPG.php
38 lines (32 loc) · 1.18 KB
/
submitAppPG.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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<title>Gator Submit Application</title>
<link rel="stylesheet" href="submitAppPG.css">
</head>
<body>
<div class="banner">
<div class="navbar">
<a href="frontPG.html"><img src="images/logo.png" class="logo"></a>
<ul>
<li><a href="ListingLease.php">List Sublease</a></li>
<li><a href="findingLease.php">Find Sublease</a></li>
</ul>
</div>
<div class="loginbox">
<h1>Listing Sublease Application</h1>
<form>
<p>Enter UF Email or UFID</p>
<input type="text" name="" placeholder="FloridaGator@ufl.edu or XXXX-XXXX">
<p>Password</p>
<input type="password" name="" placeholder="Enter Password">
<input type="submit" name="" value="Login">
<a href="createAccPG.php">Dont have an account?</a>
</form>
</div>
</div>
</body>
</html>