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
@@ -34,8 +34,6 @@ public class UserCreationController {
model.addAttribute("referrer", userCreationForm.getReferrer());
model.addAttribute("TnCAgreement", userCreationForm.isAgreedToTerms());
LOG.info("Saving user {}...", userCreationForm);
return "success";
return "successfulRegistration";
}
}