aboutsummaryrefslogtreecommitdiff
path: root/central/src/main/resources/manage/changepw.ftlh
blob: 3621022a19273e11f6819e2e61b825c051efdd00 (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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <#include "../style.ftlh">
    <title>Change Password | Manage your peering</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="/manage/change-password" method="post">
    <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>