Skip to content

Commit 66f5fc8

Browse files
committed
Updated UI
1 parent 9f435ff commit 66f5fc8

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

access-control-spring-security/src/main/webapp/WEB-INF/views/contacts/details.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>Access Control - Spring Security</title>
99
</head>
1010
<body>
11-
<h1>Contact Details (User <sec:authentication property="principal.Username"/>)</h1>
11+
<h1>Contact Details</h1>
1212

1313
<p>
1414
<strong>ID:</strong> ${contact.contactId}<br>

access-control-spring-security/src/main/webapp/WEB-INF/views/contacts/list.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<title>Access Control - Spring Security</title>
99
</head>
1010
<body>
11-
<h1>All Contacts (User <sec:authentication property="principal.Username"/>)</h1>
11+
<h1>All my contacts (<sec:authentication property="principal.Username"/>)</h1>
1212

1313
<ul>
1414
<c:forEach var="contact" items="${contacts}">

access-control-spring-security/src/main/webapp/WEB-INF/views/index.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111

1212
<p>There are two users available in this demo application: <strong>userA/userA</strong> and <strong>userB/userB</strong>.</p>
1313

14-
<p><a href="contacts/list">All Contacts</a></p>
14+
<p>List all <a href="contacts/list">My Contacts</a></p>
1515
</body>
1616
</html>

0 commit comments

Comments
 (0)