This repository has been archived on 2026-01-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ptp/src/main/webapp/WEB-INF/jsp/successfulRegistration.jsp
2019-05-02 11:57:52 -06:00

14 lines
355 B
Plaintext

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>You're Registered!</title>
</head>
<body>
Thank you for joining!
<br><b>Username: </b><%= request.getParameter("username")%>
<br><b>Email Address: </b><%= request.getParameter("emailAddress")%>
<br><a href="/index">Return Home</a>
</body>
</html>