-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcreateAccount.html
More file actions
26 lines (24 loc) · 942 Bytes
/
Copy pathcreateAccount.html
File metadata and controls
26 lines (24 loc) · 942 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Log In</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="contents">
<h1>Create Account - This needs to be finished</h1>
<h1>You need to create a createaccount.php file</h1>
<form method="post" action="createaccount.php">
<label for="username">Username:</label>
<input type="text" id="username" name="username" /><br />
<label for="pw">Password:</label>
<input type="password" id="pw" name="pw" /><br />
<label for="zip">Zipcode:</label>
<input type="text" id="zip" name="zip" /><br />
<input type="submit" value="Create Account" name="submit" />
</form>
</div>
</body>
</html>