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
<!DOCTYPE html>
<html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="layout">
 
<head>
    <title th:text="#{cas.acceptableusagepolicyview.pagetitle}"></title>
</head>
 
<body id="cas">
<div layout:fragment="content">
    <div id="login" style="width: 100%;">
        <form method="post" id="fm1">
 
            <h2>Acceptable Usage Policy</h2>
            <div>
                The purpose of this policy is to establish acceptable and unacceptable use of electronic devices and network resources
                in conjunction with the established culture of ethical and lawful behavior, openness, trust, and integrity.
                <p>By using these resources, you agree to abide by the Acceptable Usage Policy.</p>
            </div>
 
            <section class="row btn-row">
                <input type="hidden" name="execution" value="${flowExecutionKey}" />
                <input type="hidden" name="_eventId" value="submit" />
                <input class="btn-submit"
                       name="submit"
                       accesskey="s"
                       th:value="#{screen.aup.button.accept}"
                       type="submit" />
                <input
                        class="btn-reset"
                        name="cancel"
                        accesskey="c"
                        th:value="#{screen.aup.button.cancel}"
                        type="button"
                        onclick="location.href = location.href;" />
            </section>
        </form>
    </div>
</div>
</body>
</html>