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-file.ejs
2022-08-09 04:39:25 -04:00

30 lines
1,009 B
Text

<!DOCTYPE html>
<html>
<head>
<title>delete file - <%- config["meta"]["name"] %></title>
<meta name="title" content="<%= config.meta.name %>">
<meta property="og:title" content="<%= config.meta.name %>">
<meta property="twitter:title" content="<%= config.meta.name %>">
<meta name="title" content="<%= config.meta.name %>">
<meta property="og:title" content="<%= config.meta.name %>">
<meta property="twitter:title" content="<%= config.meta.name %>">
<%- 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 File</h2>
<p>Are you sure you want to delete this file? <b>This cannot be undone.</b></p>
<form method="post">
<input type="submit" value="Yes">
</form>
</div>
<%- include("../partial/footer") %>
</body>
</html>