aboutsummaryrefslogtreecommitdiff
path: root/central/src/main/resources/asn/index.ftlh
blob: 073866b3f390493f8596b54e477527eeb1972121 (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" />
    <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>