Skip to content

Commit 6e4ac77

Browse files
committed
work
1 parent 8556cfb commit 6e4ac77

13 files changed

+94
-69
lines changed

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13-
<h2>
14-
<span th:utext="#{user.registerNotConfirmed.h1}">Register as new User</span>
15-
</h2>
13+
<div class="row my-3 py-3 col">
14+
<h2>
15+
<span th:utext="#{user.registerNotConfirmed.h1}">Register as new User</span>
16+
</h2>
17+
</div>
1618
</div>
1719

1820
<div th:fragment="mytwcontent">

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13+
<div class="row my-3 py-3 col">
1314
<h1>
1415
<span th:utext="#{user.registerDone.h1}">Register as new User</span>
1516
</h1>
17+
</div>
1618
</div>
1719

1820
<div th:fragment="mytwcontent">

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13-
<h1>
14-
<span th:utext="#{user.registerConfirmed.h1}">Register as new User</span>
15-
</h1>
13+
<div class="row my-3 py-3 col">
14+
<h1>
15+
<span th:utext="#{user.registerConfirmed.h1}">Register as new User</span>
16+
</h1>
17+
</div>
1618
</div>
1719

1820
<div th:fragment="mytwcontent">

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13-
<h1>
14-
<span th:utext="#{user.registerSentMail.h1}">Register as new User</span>
15-
</h1>
13+
<div class="row my-3 py-3 col">
14+
<h1>
15+
<span th:utext="#{user.registerSentMail.h1}">Register as new User</span>
16+
</h1>
17+
</div>
1618
</div>
1719

1820
<div th:fragment="mytwcontent">

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

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13-
<h1>
14-
<span th:utext="#{user.registerForm.h1}">Register as new User</span>
15-
</h1>
13+
<div class="row my-3 py-3 col">
14+
<h1>
15+
<span th:utext="#{user.registerForm.h1}">Register as new User</span>
16+
</h1>
17+
</div>
1618
</div>
1719

1820
<div th:fragment="mytwcontent">

src/main/resources/templates/user/resetPassword/resetPasswordConfirmed.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13+
<div class="row my-3 py-3 col">
1314
<h1>
1415
<span th:utext="#{user.resetPasswordConfirmed.h1}">Password Reset</span>
1516
</h1>
17+
</div>
1618
</div>
1719

1820
<div th:fragment="mytwcontent">

src/main/resources/templates/user/resetPassword/resetPasswordDone.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13+
<div class="row my-3 py-3 col">
1314
<h1>
1415
<span th:utext="#{user.resetPasswordDone.h1}">Password Reset</span>
1516
</h1>
17+
</div>
1618
</div>
1719

1820
<div th:fragment="mytwcontent">

src/main/resources/templates/user/resetPassword/resetPasswordForm.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13+
<div class="row my-3 py-3 col">
1314
<h1>
1415
<span th:utext="#{user.resetPasswordForm.h1}">Password Reset</span>
1516
</h1>
17+
</div>
1618
</div>
1719

1820
<div th:fragment="mytwcontent">
Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
1-
<!DOCTYPE html>
2-
<html th:lang="${#locale.language}"
3-
xmlns="http://www.w3.org/1999/xhtml"
4-
xmlns:th="http://www.thymeleaf.org"
5-
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
6-
xmlns:sd="http://www.thymeleaf.org/spring-data">
7-
<head th:replace="layout/page :: tw-page-head(headtitle=~{::title},links=~{},refreshMessages=false)">
8-
<title th:text="'SimpleWorklist | ' + #{user.resetPasswordNotConfirmed.h1}">Title</title>
9-
</head>
10-
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
11-
12-
<div th:fragment="mytwtitle">
13-
<h1>
14-
<span th:utext="#{user.resetPasswordNotConfirmed.h1}">Password Reset</span>
15-
</h1>
16-
</div>
17-
18-
<div th:fragment="mytwcontent">
19-
<div class="card card-body">
20-
<p>
21-
<span th:utext="#{user.resetPasswordNotConfirmed.text}">Sorry. There is nothing known for your Request.</span>
22-
</p>
23-
</div>
24-
</div>
25-
26-
27-
</body>
28-
</html>
1+
<!DOCTYPE html>
2+
<html th:lang="${#locale.language}"
3+
xmlns="http://www.w3.org/1999/xhtml"
4+
xmlns:th="http://www.thymeleaf.org"
5+
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
6+
xmlns:sd="http://www.thymeleaf.org/spring-data">
7+
<head th:replace="layout/page :: tw-page-head(headtitle=~{::title},links=~{},refreshMessages=false)">
8+
<title th:text="'SimpleWorklist | ' + #{user.resetPasswordNotConfirmed.h1}">Title</title>
9+
</head>
10+
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
11+
12+
<div th:fragment="mytwtitle">
13+
<div class="row my-3 py-3 col">
14+
<h1>
15+
<span th:utext="#{user.resetPasswordNotConfirmed.h1}">Password Reset</span>
16+
</h1>
17+
</div>
18+
</div>
19+
20+
<div th:fragment="mytwcontent">
21+
<div class="card card-body">
22+
<p>
23+
<span th:utext="#{user.resetPasswordNotConfirmed.text}">Sorry. There is nothing known for your Request.</span>
24+
</p>
25+
</div>
26+
</div>
27+
28+
29+
</body>
30+
</html>
Lines changed: 30 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
1-
<!DOCTYPE html>
2-
<html th:lang="${#locale.language}"
3-
xmlns="http://www.w3.org/1999/xhtml"
4-
xmlns:th="http://www.thymeleaf.org"
5-
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
6-
xmlns:sd="http://www.thymeleaf.org/spring-data">
7-
<head th:replace="layout/page :: tw-page-head(headtitle=~{::title},links=~{},refreshMessages=false)">
8-
<title th:text="'SimpleWorklist | ' + #{user.resetPasswordSentMail.h1}">Title</title>
9-
</head>
10-
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
11-
12-
<div th:fragment="mytwtitle">
13-
<!-- Document Window -->
14-
<h1>
15-
<span th:utext="#{user.resetPasswordSentMail.h1}">Password Reset</span>
16-
</h1>
17-
</div>
18-
19-
<div th:fragment="mytwcontent">
20-
<div class="card card-body">
21-
<p>
22-
<span th:utext="#{user.resetPasswordSentMail.text}">Sent an email with Instructions for Password Reset to the given address. Please check your Inbox.</span>
23-
</p>
24-
</div>
25-
</div>
26-
27-
28-
</body>
29-
</html>
1+
<!DOCTYPE html>
2+
<html th:lang="${#locale.language}"
3+
xmlns="http://www.w3.org/1999/xhtml"
4+
xmlns:th="http://www.thymeleaf.org"
5+
xmlns:sec="http://www.thymeleaf.org/extras/spring-security"
6+
xmlns:sd="http://www.thymeleaf.org/spring-data">
7+
<head th:replace="layout/page :: tw-page-head(headtitle=~{::title},links=~{},refreshMessages=false)">
8+
<title th:text="'SimpleWorklist | ' + #{user.resetPasswordSentMail.h1}">Title</title>
9+
</head>
10+
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
11+
12+
<div th:fragment="mytwtitle">
13+
<div class="row my-3 py-3 col">
14+
<h1>
15+
<span th:utext="#{user.resetPasswordSentMail.h1}">Password Reset</span>
16+
</h1>
17+
</div>
18+
</div>
19+
20+
<div th:fragment="mytwcontent">
21+
<div class="card card-body">
22+
<p>
23+
<span th:utext="#{user.resetPasswordSentMail.text}">Sent an email with Instructions for Password Reset to the given address. Please check your Inbox.</span>
24+
</p>
25+
</div>
26+
</div>
27+
28+
29+
</body>
30+
</html>

src/main/resources/templates/user/selfservice/language.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13+
<div class="row my-3 py-3 col">
1314
<h1>
1415
<i class="fas fa-edit"></i>
1516
<span th:utext="#{user.selfservice.profile.changeLanguage}">Set Default Language</span>
@@ -20,6 +21,7 @@ <h1>
2021
</strong>
2122
</small>
2223
</h1>
24+
</div>
2325
</div>
2426

2527
<div th:fragment="mytwcontent">

src/main/resources/templates/user/selfservice/name.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13+
<div class="row my-3 py-3 col">
1314
<h1>
1415
<i class="fas fa-edit"></i>
1516
<span th:utext="#{user.selfservice.profile.name}">Change Name</span>
@@ -21,6 +22,7 @@ <h1>
2122
</strong>
2223
</small>
2324
</h1>
25+
</div>
2426
</div>
2527

2628
<div th:fragment="mytwcontent">

src/main/resources/templates/user/selfservice/password.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<body th:replace="layout/page :: tw-page-body(twcontent=~{::mytwcontent},twtitle=~{::mytwtitle},scripts=~{})">
1111

1212
<div th:fragment="mytwtitle">
13+
<div class="row my-3 py-3 col">
1314
<h1>
1415
<i class="fas fa-edit"></i>
1516
<span th:utext="#{user.selfservice.profile.changePassword}">Change Password</span>
@@ -20,6 +21,7 @@ <h2>
2021
<span sec:authentication="name"></span>
2122
</strong>
2223
</h2>
24+
</div>
2325
</div>
2426

2527
<div th:fragment="mytwcontent">

0 commit comments

Comments
 (0)