Skip to content

Commit d6f74b1

Browse files
committed
work
1 parent 6e4ac77 commit d6f74b1

File tree

7 files changed

+27
-14
lines changed

7 files changed

+27
-14
lines changed

src/main/resources/templates/user/messages/all.html

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@
1111

1212
<div th:fragment="mytwtitle">
1313
<div class="row my-3 py-3 col">
14-
<h1>
15-
<strong th:utext="#{pages.chatMessages.h1}">Your Dialog with</strong>
16-
<small th:text="${otherUser.userFullname}">otherUser.userFullname</small>
17-
</h1>
14+
<h1>
15+
<strong th:utext="#{pages.chatMessages.h1}">Your Dialog with</strong>
16+
</h1>
17+
<h2>
18+
<small th:text="${otherUser.userFullname}">otherUser.userFullname</small>
19+
</h2>
1820
</div>
1921
</div>
2022

@@ -28,7 +30,8 @@ <h1>
2830
<div class="form-group col-12">
2931
<label for="messageTextEditor" class="control-label my-2" th:utext="#{pages.chatMessages.newMessage}">New Message:</label>
3032
<textarea id="messageTextEditor" rows="3" cols="50"
31-
th:field="*{messageText}" class="form-control form-control-lg"/>
33+
th:field="*{messageText}" class="form-control form-control-lg">
34+
</textarea>
3235
<div>
3336
<div th:each="err : ${#fields.errors('messageText')}"
3437
th:text="${err}" class="invalid-feedback"/>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
<div th:fragment="mytwtitle">
1313
<div class="row my-3 py-3 col">
14-
<h2>
14+
<h1>
1515
<span th:utext="#{user.registerNotConfirmed.h1}">Register as new User</span>
16-
</h2>
16+
</h1>
1717
</div>
1818
</div>
1919

src/main/resources/templates/user/selfservice/context/add.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313
<h1>
1414
<i class="fas fa-edit"></i>
1515
<span th:utext="#{user.selfservice.contexts.add.button}">Add Area</span>
16+
</h1>
17+
<h2>
1618
<small>
1719
<span th:utext="#{user.selfservice.forUser}">for User:</span>
1820
<strong>
1921
<span sec:authentication="name"></span>
2022
</strong>
2123
</small>
22-
</h1>
24+
</h2>
2325
</div>
2426

2527
<div th:fragment="mytwcontent">

src/main/resources/templates/user/selfservice/context/all.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313
<h1>
1414
<i class="fas fa-edit"></i>
1515
<span th:utext="#{user.selfservice.profile.changeContexts}">Change Areas</span>
16+
</h1>
17+
<h2>
1618
<small>
1719
<span th:utext="#{user.selfservice.forUser}">for User:</span>
1820
<strong>
1921
<span sec:authentication="name"></span>
2022
</strong>
2123
</small>
22-
</h1>
24+
</2>
2325
</div>
2426

2527
<div th:fragment="mytwcontent">

src/main/resources/templates/user/selfservice/context/edit.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,15 @@
1313
<h1>
1414
<i class="fas fa-edit"></i>
1515
<span th:utext="#{user.selfservice.contexts.edit}">Edit Area</span>
16+
</h1>
17+
<h2>
1618
<small>
1719
<span th:utext="#{user.selfservice.forUser}">for User:</span>
1820
<strong>
1921
<span sec:authentication="name"></span>
2022
</strong>
2123
</small>
22-
</h1>
24+
</h2>
2325
</div>
2426

2527
<div th:fragment="mytwcontent">

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@
1313
<div class="row my-3 py-3 col">
1414
<h1>
1515
<i class="fas fa-edit"></i>
16-
<span th:utext="#{user.selfservice.profile.changeLanguage}">Set Default Language</span>
16+
<strong th:utext="#{user.selfservice.profile.changeLanguage}">Set Default Language</strong>
17+
</h1>
18+
<h2>
1719
<span th:utext="#{user.selfservice.forUser}">for User:</span>
1820
<small>
1921
<strong>
2022
<span sec:authentication="name"></span>
2123
</strong>
2224
</small>
23-
</h1>
25+
</h2>
2426
</div>
2527
</div>
2628

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,17 @@
1313
<div class="row my-3 py-3 col">
1414
<h1>
1515
<i class="fas fa-edit"></i>
16-
<span th:utext="#{user.selfservice.profile.name}">Change Name</span>
16+
<strong th:utext="#{user.selfservice.profile.name}">Change Name</strong>
17+
</h1>
18+
<h2>
1719
<span th:text="${thisUser.userFullname}">thisUser.userFullname</span>
1820
<small>
1921
<span th:utext="#{user.selfservice.forUser}">for User:</span>
2022
<strong>
2123
<span sec:authentication="name"></span>
2224
</strong>
2325
</small>
24-
</h1>
26+
</h2>
2527
</div>
2628
</div>
2729

0 commit comments

Comments
 (0)