Skip to content
This repository was archived by the owner on Dec 12, 2018. It is now read-only.

Commit edf17fa

Browse files
committed
commenting out block of code in thymeleaf example that does NOT yet work with Okta
1 parent 7e23335 commit edf17fa

File tree

1 file changed

+3
-2
lines changed
  • examples/spring-security-spring-boot-webmvc/src/main/resources/templates

1 file changed

+3
-2
lines changed

examples/spring-security-spring-boot-webmvc/src/main/resources/templates/hello.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ <h1 th:text="'Hello, ' + ${name} + '!'"/>
3333
<a th:href="@{/login}" class="btn btn-primary">Login</a>
3434
</div>
3535
<div th:if="${account}">
36-
<h4 th:text="'Account Store: ' + ${account.Directory.Name}"></h4>
37-
<h4 th:text="'Provider: ' + ${account.ProviderData.ProviderId}"></h4>
36+
<!-- TODO: currently not supported on the Okta branch -->
37+
<!--<h4 th:text="'Account Store: ' + ${account.Directory.Name}"></h4>-->
38+
<!--<h4 th:text="'Provider: ' + ${account.ProviderData.ProviderId}"></h4>-->
3839
<form id="logoutForm" th:action="@{/logout}" method="post">
3940
<a th:href="@{/restricted}" class="btn btn-warning">Restricted</a>
4041
<input type="submit" class="btn btn-danger" value="Logout"/>

0 commit comments

Comments
 (0)