-
Notifications
You must be signed in to change notification settings - Fork 2
/
delete.html
31 lines (28 loc) · 987 Bytes
/
delete.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="/assets/images/ic.png">
<link rel="stylesheet" type="text/css" href="/assets/css/signin.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Delete your account</title>
</head>
<body>
<img src="/assets/images/doc.gif" id="img">
<form method="POST" action="/delete">
<p id="frm-p">Delete your account</p>
<img id="frm-img" src="/assets/avatars/blank.png" style="border-radius: 200px;height: 120px;width: 120px;">
<input class="frm-inp" type="text" name="username" placeholder="Enter username">
<input class="frm-inp" type="password" name="password" placeholder="Enter password">
<br><br>
<button id="frm-btn">Delete</button>
<br><Br>
</form>
<script type="text/javascript">
if ("{{msg}}" != "none") {
alert("{{msg}}");
}
</script>
<script type="text/javascript" src="/assets/script/signin.ui.js"></script>
</body>
</html>