aboutsummaryrefslogtreecommitdiff
path: root/central/src/main/resources/asn/index.ftlh
diff options
context:
space:
mode:
Diffstat (limited to 'central/src/main/resources/asn/index.ftlh')
-rw-r--r--central/src/main/resources/asn/index.ftlh33
1 files changed, 33 insertions, 0 deletions
diff --git a/central/src/main/resources/asn/index.ftlh b/central/src/main/resources/asn/index.ftlh
new file mode 100644
index 0000000..073866b
--- /dev/null
+++ b/central/src/main/resources/asn/index.ftlh
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8" />
+ <title>Register your ASN</title>
+</head>
+<body>
+<h1>Register your ASN</h1>
+<p>You may register your ASN now. One ASN can have multiple peers with us.</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="/asn" method="post">
+ <label for="asn">ASN (You cannot change this after registration):</label><br />
+ <input type="text" id="asn" name="asn" required
+ placeholder="AS4242422980"
+ pattern="[aA][sS]424242[0-9][0-9][0-9][0-9]"
+ value="${input_asn}"><br />
+ <br />
+
+ <label for="submit">When you click the following button, we will send an email with initial password to your tech-c person (All possible emails). Make sure you have access to that!</label><br />
+ <label for="submit">If you did not receive the email, you may contact us for manual password reset.</label><br />
+ <input type="submit" id="submit">
+</form>
+</body>
+</html> \ No newline at end of file