| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <!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.mfa.duologin.pagetitle}">Duo Login View</title>
- <script th:src="@{/js/duo/Duo-Web-v2.min.js}"></script>
- <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">
- <form method="post" id="duo_form" class="fm-v clearfix" th:object="${credential}" th:action="@{/login}">
- <div id="msg" class="alert alert-danger" role="alert" th:if="${#fields.hasErrors('*')}">
- <span th:each="err : ${#fields.errors('*')}" th:utext="${err}">this error block and text is only shown if there are errors</span>
- </div>
- <input type="hidden" name="execution" th:value="${flowExecutionKey}"/>
- <input type="hidden" name="_eventId" value="submit"/>
- <input type="hidden" name="geolocation"/>
- <div id="login">
- <iframe id="duo_iframe"
- frameborder="0"
- th:attr="data-host=${apiHost},data-sig-request=${sigRequest}"
- data-post-argument="signedDuoResponse">
- </iframe>
- <style>
- #duo_iframe {
- width: 100%;
- min-width: 304px;
- max-width: 620px;
- height: 330px;
- border: none;
- }
- </style>
- </div>
- </form>
- </div>
- </main>
- </body>
- </html>
|