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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="monitoring/layout">
 
<head>
    <title>Authentication Events</title>
    <script th:inline="javascript">
        /*<![CDATA[*/
        
        var urls = {
            getEvents: /*[[@{/status/authnEvents/getEvents}]]*/
        };
 
        /*]]>*/
    </script>
 
    <script type="text/javascript" th:inline="javascript">
 
        function jqueryReady() {
            head.load(
                    /*[[@{/css/authnEvents.css}]]*/
            );
            head.load(
                    /*[[@{/js/authnEvents.js}]]*/
            );
        }
    </script>
</head>
 
<body id="cas">
<div layout:fragment="content">
 
    <div id="authnEvents">
        <h1>Manage Authentication Events</h1>
        
        <div class="tabsContainer row">
            <!-- Nav tabs -->
            <ul id="myTabs" class="nav nav-tabs" role="tablist">
                <li role="presentation" class="active"><a href="#authnEvents" aria-controls="authnEvents" role="tab"
                                                          data-toggle="tab">Authentication Events</a></li>
            </ul>
                        
            <div class="tab-content">
                <div role="tabpanel" class="tab-pane active" id="authnEventsTab">
                    <table id="authnEventsTable" class="display table table-striped table-bordered">
                        <thead>
                        <tr>
                            <th>Type</th>
                            <th>Principal</th>
                            <th>Created</th>
                            <th>Timestamp</th>
                            <th>User Agent</th>
                            <th>Client IP</th>
                            <th>Server IP</th>
                            <th>Geo Lat.</th>
                            <th>Geo Long.</th>
                            <th>Geo Accuracy</th>
                        </tr>
                        </thead>
                        <tbody>
                        </tbody>
                    </table>
                </div>
            </div>
        </div>
        <div th:replace="fragments/footerButtons"/>
    </div>
</div>
</body>
</html>