This repository has been archived on 2023-05-12. You can view files and clone it, but cannot push or open issues or pull requests.
media-host/views/pages/delete-acc.ejs
2022-08-04 20:04:24 -04:00

23 lines
664 B
Text

<!DOCTYPE html>
<html>
<head>
<title>delete user - <%- config["meta"]["name"] %></title>
<%- include("../partial/html-head")%>
</head>
<body>
<%- include("../partial/header") %>
<div class="modal">
<% if (typeof err == "string") { %>
<div class="err">
<p><%= err %></p>
</div>
<% } %>
<h2 class="nm">Delete Account</h2>
<p>Are you sure you want to delete your account? <b>This cannot be undone and will delete all of your content.</b></p>
<form method="post">
<input type="submit" value="Yes">
</form>
</div>
<%- include("../partial/footer") %>
</body>
</html>