Skip to content

Commit c726825

Browse files
committed
bugfixing
1 parent 4af2e83 commit c726825

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/main/resources/templates/user/login/loginForm.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h2><span th:utext="#{user.loginForm.h2}">Your Todo-List for Getting Things Done
1919
<div class="card">
2020
<div class="card-header">
2121
<span th:utext="#{user.loginForm.login}">Please login or</span>
22-
<a th:href="@{/user/register}">
22+
<a th:href="@{/user/register/}">
2323
<span th:utext="#{user.loginForm.register}">register as new user</span>
2424
</a>.
2525
</div>
@@ -65,7 +65,7 @@ <h2><span th:utext="#{user.loginForm.h2}">Your Todo-List for Getting Things Done
6565
</a>
6666
</div>
6767
<div class="col-md-4 mb-4">
68-
<a id="registerButton" th:href="@{/user/register}" role="button"
68+
<a id="registerButton" th:href="@{/user/register/}" role="button"
6969
class="btn btn-block btn-secondary">
7070
<i class="fas fa-user"></i>
7171
<span th:utext="#{user.loginForm.register}">register as new user</span>

src/main/resources/templates/user/register/registerForm.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1>
1616
</div>
1717

1818
<div th:fragment="mytwcontent">
19-
<form id="formId" th:action="@{/user/register}" th:object="${userRegistrationForm}" method="post">
19+
<form id="formId" th:action="@{/user/register/}" th:object="${userRegistrationForm}" method="post">
2020
<div class="card">
2121
<div class="card-header">
2222
<span th:utext="#{user.loginForm.register}">register as new user</span>

0 commit comments

Comments
 (0)