| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <!DOCTYPE html>
- <html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="~{layout}">
- <head>
- <meta http-equiv="X-UA-Compatible" content="IE=edge"/>
- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/>
- <title th:text="#{cas.acceptableusagepolicyview.pagetitle}"></title>
- <link href="../../static/css/cas.css" rel="stylesheet" th:remove="tag" />
- </head>
- <body id="cas">
- <main role="main" class="container mt-3 mb-3">
- <div layout:fragment="content" id="login" class="card">
- <form method="post" id="fm1">
- <div class="card-header text-center">
- <h3 th:text="#{screen.aup.heading}">Acceptable Usage Policy</h3>
- </div>
- <div class="card-body">
- <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.
- <div>
- <p/>
- <p>By using these resources, you agree to abide by the Acceptable Usage Policy.</p>
- </div>
- </div>
- <input type="hidden" name="execution" th:value="${flowExecutionKey}"/>
- <input type="hidden" name="_eventId" value="submit"/>
- <input class="btn btn-success"
- name="submit"
- accesskey="s"
- th:value="#{screen.aup.button.accept}"
- value="ACCEPT"
- type="submit"/>
- <span style="width: 3px"></span>
- <input
- class="btn btn-warning"
- name="cancel"
- accesskey="c"
- th:value="#{screen.aup.button.cancel}"
- value="CANCEL"
- type="button"
- onclick="location.href = location.href;"/>
- </div>
- </form>
- </div>
- </main>
- </body>
- </html>
|