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/promote-user.ejs

18 lines
580 B
Text

<!DOCTYPE html>
<html>
<head>
<title>promote user - <%- config["meta"]["name"] %></title>
<%- include("../../partial/html-head")%>
</head>
<body>
<%- include("../../partial/header") %>
<div class="modal">
<h2 class="nm">Promote Account</h2>
<p>Are you sure you want to promote (make admin) the account "<%= user.username %> (<code><%= user.id %></code>)"? <b>This cannot be undone.</b></p>
<form method="post">
<input type="submit" value="Yes">
</form>
</div>
<%- include("../../partial/footer") %>
</body>
</html>