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/generate-code.ejs

23 lines
727 B
Text

<!DOCTYPE html>
<html>
<head>
<title>generate a code - <%- config["meta"]["name"] %></title>
<%- include("../../partial/html-head")%>
</head>
<body>
<%- include("../../partial/header") %>
<div class="modal">
<% if (code) { %>
<div class="suc">
<p>Code generated: <a href="/signup-with-code?code=<%= code %>"><code><%= code %></code></a></p>
</div>
<% } %>
<h2 class="nm">Generate Code</h2>
<p class="nm">Generate accounts for others to make accounts without opening registrations.</p><br>
<form method="post">
<input type="submit" value="Generate code">
</form>
</div>
<%- include("../../partial/footer") %>
</body>
</html>