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/not-allowed.ejs

22 lines
671 B
Text

<!DOCTYPE html>
<html>
<head>
<title>home - <%- config["meta"]["name"] %></title>
<meta property="og:site_name" content="<%= config.meta.name %>">
<meta name="title" content="403 Forbidden">
<meta property="og:title" content="403 Forbidden">
<meta property="twitter:title" content="403 Forbidden">
<meta property="og:type" content="website">
<%- include("../partial/html-head")%>
</head>
<body>
<%- include("../partial/header") %>
<div class="modal">
<h2 class="nm">Not Allowed</h2>
<p>This instance didn't allow the action you tried doing.</p>
</div>
<%- include("../partial/footer") %>
</body>
</html>