1
13693261870
2022-09-16 58d012f11dd34564d81b4eb3a6099eb689876597
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div class="well well-lg hidden-xs" th:if="${pac4jUrls}">
    <div id="list-providers">
        <h3 th:utext="#{screen.welcome.label.loginwith}" />
 
        <ul th:if="${#arrays.length(pac4jUrls) le 5}">
            <li th:each="entry: ${pac4jUrls}" th:switch="${entry.type}">
                <a class="btn btn-block btn-social"
                   th:classappend="'btn-' + ${entry.type}"
                   th:href="${entry.redirectUrl}"
                   th:inline="text"
                   th:title="${entry.name}">
 
                    <span th:case="twitter" class="fa fa-twitter-square"></span>
                    <span th:case="foursquare" class="fa fa-foursquare"></span>
                    <span th:case="windowslive" class="fa fa-windows"></span>
                    <span th:case="yahoo" class="fa fa-yahoo"></span>
                    <span th:case="google2" class="fa fa-google-plus"></span>
                    <span th:case="github" class="fa fa-github-alt"></span>
                    <span th:case="dropbox" class="fa fa-dropbox"></span>
                    <span th:case="facebook" class="fa fa-facebook-square"></span>
                    <span th:case="oidc" class="fa fa-openid"></span>
                    <span th:case="saml2" class="fa fa-lock"></span>
                    <span th:case="linkedin2" class="fa fa-linkedin-square"></span>
                    <span th:case="*" class="fa fa-sign-in"></span>
 
                    [[${entry.name}]]
                </a>
            </li>
        </ul>
 
        <div th:if="${#arrays.length(pac4jUrls) > 5}">
            <a th:each="entry: ${pac4jUrls}" th:switch="${entry.type}"
               class="btn btn-lg btn-social-icon"
               th:classappend="'btn-' + ${entry.type}"
               th:href="${entry.redirectUrl}"
               th:title="${entry.name}">
 
                <span th:case="twitter" class="fa fa-twitter-square"></span>
                <span th:case="foursquare" class="fa fa-foursquare"></span>
                <span th:case="windowslive" class="fa fa-windows"></span>
                <span th:case="yahoo" class="fa fa-yahoo"></span>
                <span th:case="google2" class="fa fa-google-plus"></span>
                <span th:case="github" class="fa fa-github-alt"></span>
                <span th:case="dropbox" class="fa fa-dropbox"></span>
                <span th:case="facebook" class="fa fa-facebook-square"></span>
                <span th:case="oidc" class="fa fa-openid"></span>
                <span th:case="saml2" class="fa fa-lock"></span>
                <span th:case="linkedin2" class="fa fa-linkedin-square"></span>
                <span th:case="*" class="fa fa-sign-in"></span>
            </a>
        </div>
    </div>
</div>