aboutsummaryrefslogtreecommitdiff
path: root/central/src/main/resources/admin/asn/changepw.ftlh
blob: a7538016ea29e93b426216b4fda47eb4a8b882f0 (plain)
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <#include "/style.ftlh">
    <title>Change Password | Admin</title>
</head>
<body class="markdown-body">
<h1>Change Password</h1>
<p>You are logged in as: ${asn}.</p>
<#if errors??>
<div>
    <p style="color:red">Errors in the previous form:</p>
    <ul>
        <#list errors as error>
            <li>${error}</li>
        </#list>
    </ul>
</div>
</#if>
<form action="/admin/asn/change-password" method="post">
    <label for="asn">New Password:</label><br />
    <input type="asn" id="asn" name="asn" required
           placeholder="${asn}"
           value="${(target_asn)!}"><br />
    <br />
    <label for="passwd">New Password:</label><br />
    <input type="password" id="passwd" name="passwd" required
           placeholder="p@ssw0rd!"><br />
    <br />
    <label for="confirm">Confirm Password:</label><br />
    <input type="password" id="confirm" name="confirm" required
           placeholder="p@ssw0rd!"><br />
    <br />
    <input type="submit" id="submit">
</form>
</body>
</html>