Newer
Older
cas-server / cas / WEB-INF / classes / templates / casAuthyLoginView.html
zhout on 17 Jun 2021 1 KB first commit
<!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.authy.pagetitle}">Authy Login 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="box fl-panel" id="login">

            <form method="post" id="fm1" 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>

                <div class="form-group">
                    <label for="token" th:utext="#{screen.welcome.label.password}"><span
                            class="accesskey">P</span>assword:</label>

                    <input type="password" class="form-control required" id="token" size="25" tabindex="1"
                           th:field="*{token}"
                           th:accesskey="#{screen.welcome.label.password.accesskey}" autocomplete="off"/>
                </div>

                <input class="btn btn-submit" name="_eventId_submit" accesskey="l"
                       th:value="#{screen.welcome.button.login}" tabindex="4" type="submit" value="LOGIN"/>
                <input type="hidden" name="execution" th:value="${flowExecutionKey}"/>
                <input type="hidden" name="geolocation"/>
            </form>
        </div>
    </div>
</main>
</body>
</html>