-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
45 lines (36 loc) · 983 Bytes
/
admin.php
File metadata and controls
45 lines (36 loc) · 983 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
36
37
38
39
40
41
42
43
44
45
<?php
/*
Team: FIN
Author: Dustin Abramson
Main Super User creation page.
*/
?>
<!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>Log In</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>Log In</h1>
<form id = "submit" action="index.php" method = "POST">
<div>
<strong>User Name:</strong>
<input type="text" name = "username" value="" maxlength = "20" size = "20" />
</div>
<div>
<strong>Password:</strong>
<input type="password" name="userpass" maxlength="20" size="20" />
</div>
<div>
<input type="submit" />
</div>
</form>
</div>
</body>
</html>