-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.php
More file actions
35 lines (29 loc) · 869 Bytes
/
success.php
File metadata and controls
35 lines (29 loc) · 869 Bytes
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
<?php
/*
Team: FIN
Author: Dustin Abramson
creates a form that allows user to input the information needed for creating a building object in
the database.
For more information about the requirements of this information please see create.php
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Successful Sign Up</title>
<link href="FINsert/FIN.css" type="text/css" rel="stylesheet" />
<script src="http://ajax.googleapis.com/ajax/libs/prototype/1.6.1.0/prototype.js" type="text/javascript"></script>
</head>
<body>
<div id = "header">
</div>
<div class = "content">
<h1>Congratulations!</h1>
<p>
<?= "".$username ?> you have successfully submitted your application for becoming
a superuser.
</p>
</div>
</body>
</html>