cas-service-ja/overlays/org.apereo.cas.cas-server-w.../WEB-INF/classes/templates/casAcceptableUsagePolicyVie...

54 lines
2.2 KiB
HTML

<!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>