24 lines
889 B
HTML
24 lines
889 B
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="#{screen.service.error.header}">Service Error View</title>
|
|
<link href="../../static/css/cas.css" rel="stylesheet" th:remove="tag" />
|
|
</head>
|
|
|
|
<body>
|
|
<main role="main" class="container mt-3 mb-3">
|
|
<div layout:fragment="content">
|
|
<div class="alert alert-danger">
|
|
<h2 th:utext="#{screen.service.error.header}">Application Not Authorized to Use CAS</h2>
|
|
<p th:if="${rootCauseException != null and rootCauseException.code != null}"
|
|
th:utext="#{${rootCauseException.code}}">rootCauseException.code</p>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|