aboutsummaryrefslogtreecommitdiff
path: root/central/src/main/resources/manage/changepw.ftlh
diff options
context:
space:
mode:
Diffstat (limited to 'central/src/main/resources/manage/changepw.ftlh')
-rw-r--r--central/src/main/resources/manage/changepw.ftlh32
1 files changed, 32 insertions, 0 deletions
diff --git a/central/src/main/resources/manage/changepw.ftlh b/central/src/main/resources/manage/changepw.ftlh
new file mode 100644
index 0000000..481c0d0
--- /dev/null
+++ b/central/src/main/resources/manage/changepw.ftlh
@@ -0,0 +1,32 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <title>Change Password | Manage your peering</title>
+</head>
+<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> \ No newline at end of file