PAN-54 Client-side mostly working. Still need email validator and to handle the errors thrown by UserCreationController. Next stage after that is to query the DB for existing usernames - once for the registering party and once for the referrer category.

This commit is contained in:
BrittanyBi
2019-04-07 20:34:52 -06:00
parent 6f70785387
commit 4cc184b6e7
3 changed files with 154 additions and 27 deletions
@@ -0,0 +1,13 @@
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>You're Registered!</title>
</head>
<body>
<br><b>User ID: </b><%= request.getParameter("userID")%>
<br><b>Username: </b><%= request.getParameter("username")%>
<br><b>Theorem: </b><%= request.getParameter("emailAddress")%>
<br><b>First Name: </b><%= request.getParameter("firstName")%>
<br><b>Last Name: </b><%= request.getParameter("lastName")%>
</body>
</html>