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
<!DOCTYPE html>
<html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="layout">
 
<head>
    <title th:text="#{screen.pac4j.unauthz.pagetitle}"></title>
</head>
 
<body id="cas">
<div layout:fragment="content">
    <div class="alert alert-danger">
        <h2 th:utext="#{screen.pac4j.unauthz.heading}"/>
        <p th:utext="#{screen.pac4j.unauthz.message}"/>
 
        <div>
            <p/>
            <table class="table table-bordered table-hover table-responsive">
                <thead>
                <tr>
                    <th>Error</th>
                    <th>Reason</th>
                    <th>Code</th>
                    <th>Description</th>
                    <th>Provider</th>
                    <th>Destination</th>
                </tr>
                </thead>
                <tbody>
                <tr class="active">
                    <td th:text="${error}" />
                    <td th:text="${reason}" />
                    <td th:text="${code}" />
                    <td th:text="${description}" />
                    <td th:text="${client}" />
                    <td>
                        <a th:href="${service}" th:text="#{screen.pac4j.unauthz.gotoapp}"/>
                    </td>
 
                </tr>
                </tbody>
            </table>
 
        </div>
    </div>
    <p>
        <a class="btn btn-success" th:href="@{/login}" th:text="#{screen.pac4j.unauthz.login}"/>
        <a class="btn btn-success" th:href="${service}" th:text="#{screen.pac4j.unauthz.gotoapp}"/>
    </p>
</div>
</body>
</html>