34 lines
1.4 KiB
Plaintext
34 lines
1.4 KiB
Plaintext
<%- include('header'); -%>
|
|
|
|
<article class="container mx-auto py-4 min-h-[70dvh]">
|
|
<h2>Welcome to <%= title %></h2>
|
|
|
|
<fieldset class="fieldset bg-base-100 rounded-box px-8 py-4 shadow-md">
|
|
<legend class="fieldset-legend h3">Start a new test</legend>
|
|
<input type="text" class="input" placeholder="Type here" />
|
|
<p class="label">Add either single URL or link to sitemap</p>
|
|
</fieldset>
|
|
<button type="submit" class="btn btn-info">Test</button>
|
|
|
|
<ul class="list bg-base-100 rounded-box shadow-md mt-8">
|
|
<li class="list-row list-item text-slate-200 list-none">
|
|
<a href="/test/1" class="text-slate-300 link"><h3 class="inline-block mr-4">Test 1</h3></a>
|
|
<span class="badge badge-info">In Progress</span>
|
|
</li>
|
|
<li class="list-row list-item text-slate-200 list-none">
|
|
<a href="/test/2" class="text-slate-300 link"><h3 class="inline-block mr-4">Test 2</h3></a>
|
|
<span class="badge badge-success">Completed</span>
|
|
</li>
|
|
<li class="list-row list-item text-slate-200 list-none">
|
|
<a href="/test/3" class="text-slate-300 link"><h3 class="inline-block mr-4">Test 3</h3></a>
|
|
<span class="badge badge-error">Failed</span>
|
|
</li>
|
|
<li class="list-row list-item text-slate-200 list-none">
|
|
<a href="/test/4" class="text-slate-300 link"><h3 class="inline-block mr-4">Test 4</h3></a>
|
|
<span class="badge badge-warning">Pending</span>
|
|
</li>
|
|
</ul>
|
|
</article>
|
|
|
|
<%- include('footer'); -%>
|