1
13693261870
2022-09-16 58d012f11dd34564d81b4eb3a6099eb689876597
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" layout:decorate="layout">
 
<head>
    <title th:text="#{screen.pm.reset.title}"></title>
</head>
 
<body id="cas">
<div layout:fragment="content">
    <div>
        <h2 th:utext="#{screen.pm.reset.qstitle}"/>
        <p th:utext="#{screen.pm.reset.qsmsg(${username})}"/>
        <p/>
        <p/>
    </div>
 
    <form method="post" id="fm1" class="fm-v clearfix">
        <div class="row btn-row">
            <input type="hidden" name="execution" th:value="${flowExecutionKey}"/>
            <input type="hidden" name="_eventId" value="submit"/>
            <input type="hidden" name="username" th:value="${username}"/>
            <input type="hidden" name="token" th:value="${token}"/>
        </div>
        <div class="row fl-controls-left">
 
            <table width="100%">
                <tr th:each="q : ${questions}">
                    <td th:utext="${q}"></td>
                    <td>
                        <input type="password" class="required" th:name="${'q' + qStat.index}" size="45"/>
                    </td>
                </tr>
            </table>
 
            <div>
                <br/>
                <input class="btn btn-submit" accesskey="s"
                       th:value="#{screen.pm.button.submit}" tabindex="2" type="submit"/>
            </div>
        </div>
 
    </form>
</div>
</body>
</html>