21 lines
442 B
HTML
21 lines
442 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Delete account | Vanikam</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<form action="/owner/delete/user" method="post">
|
||
|
|
||
|
<label for="password">
|
||
|
Password
|
||
|
<input type="password" name="password" id="password">
|
||
|
</label>
|
||
|
|
||
|
<button type="submit">Delete account</button>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|