diff options
author | William Harrington <kb0iic@berzerkula.org> | 2025-02-18 10:09:04 -0600 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2025-02-18 10:09:04 -0600 |
commit | 75ede4b9db80823e5fba3316a31a57ce32099d64 (patch) | |
tree | 30b2f88e0caa1c79be8b4f70ca33f513a3db5840 /src/main/resources/templates/register.html | |
parent | c86404d612561797e2328a1388e0fc9c709bcf3e (diff) |
After successful registration, redirect to login with a registrationSuccess parameter with success alert.
Diffstat (limited to 'src/main/resources/templates/register.html')
-rw-r--r-- | src/main/resources/templates/register.html | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/main/resources/templates/register.html b/src/main/resources/templates/register.html index 41175d5..230bbeb 100644 --- a/src/main/resources/templates/register.html +++ b/src/main/resources/templates/register.html @@ -14,15 +14,6 @@ <h2 class="text-center mb-4">Register</h2> <hr /> - <div th:if="${success}" - class="alert alert-success alert-dismissible fade show" role="alert"> - - <strong>Account Created Successfully!</strong> - <a class="ms-2" href="/login">Login</a> - <button type="button" class="btn-close" data-bs-dismiss="alert" - aria-label="Close"></button> - </div> - <form method="post" th:object="${registerDto}"> <input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}" /> |