PAN-54 Created user registration page.

This commit is contained in:
BrittanyBi
2019-03-24 15:37:39 -06:00
parent de5a69d619
commit 0fc825e11b
4 changed files with 123 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
<%@ page contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>User Creation</title>
</head>
<body>
<form method="post" action="">
<label>Username:
<input type="text" name="username"/>
</label>
<br>
<label>Password:
<input type="text" name="password"/>
</label>
<br>
<label>Confirm Password:
<input type="text" name="confirmPassword"/>
</label>
<br>
<label>Email Address:
<input type="text" name="emailAddress"/>
</label>
<br>
<label>First Name:
<input type="text" name="firstName"/>
</label>
<br>
<label>Last Name:
<input type="text" name="lastName"/>
</label>
<br>
<label>I agree to the terms and conditions.
<input type="checkbox" name="agreedToTerms"/>
</label>
<br>
<input type="submit" value="Save">
</form>
</body>
</html>