15 lines
587 B
Plaintext
15 lines
587 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="<%= config.language %>
|
|
<head>
|
|
<%- include("../partials/head") %>
|
|
</head>
|
|
<body>
|
|
<form action="/submit_delete_account" method="POST">
|
|
<input placeholder="username" required name="username"><br/>
|
|
<input placeholder="password" type="password" required id="password" name="password"><br/>
|
|
<label><%- config.string.delete_account_confirmation %>: </label><input type="checkbox" name="agreement" required><br/>
|
|
<input type="submit" value="Submit"><br/>
|
|
</form>
|
|
</body>
|
|
</html>
|