You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dick/views/templates/public.ejs

14 lines
513 B

<%- include("./partials/head") %>
<section class="bg-primary">
<div class="flex flex-col items-center justify-center min-h-screen p-6">
<!-- Page Content -->
<% if(path == '/login'){ %> <%- include("../pages/public/login") %> <% } %>
<% if(settingsDatabase.registrationEnabled) { %>
<% if(path == '/register'){ %> <%- include("../pages/public/register") %> <% } %>
<% } %>
<!-- /Page Content -->
</div>
</section>
<%- include("./partials/footer") %>