aboutsummaryrefslogtreecommitdiff
path: root/central/src/main/resources/manage/delete.ftlh
blob: 6dd98776f42b41da1fa4249ebe87c630e7e1209f (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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Delete Account | Manage your peering</title>
</head>
<body>
<h1>Delete Account</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/delete-account" method="post">
    <label for="submit">Are you sure to delete your account?</label><br />
    <input type="submit" id="submit">
</form>
</body>
</html>