21 lines
457 B
Plaintext
21 lines
457 B
Plaintext
<%- include('header'); -%>
|
|
|
|
<article class="container mx-auto py-4 min-h-[70dvh]">
|
|
<h2>Welcome to <%= title %></h2>
|
|
|
|
<%- include('add-form'); -%>
|
|
<% if (msg) { %>
|
|
<div class="alert alert-success mt-4">
|
|
<div class="text-xl"><%= msg %></div>
|
|
</div>
|
|
<% } %>
|
|
|
|
<h2 class="text-25px font-bold mt-8">Your Tests</h2>
|
|
|
|
<div class="mt-8">
|
|
<%- include('domain-cards', { data: sites }); -%>
|
|
</div>
|
|
</article>
|
|
|
|
<%- include('footer'); -%>
|