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/admin-actions/delete-acc.ejs

18 lines
534 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">
<h2 class="nm">Delete Account</h2>
<p>Are you sure you want to delete the account "<%= user.username %>"? <b>This cannot be undone.</b></p>
<form method="post">
<input type="submit" value="Yes">
</form>
</div>
<%- include("../../partial/footer") %>
</body>
</html>