32 lines
664 B
Cheetah
32 lines
664 B
Cheetah
<section class="text-center">
|
|
<header class="m-[1em]">
|
|
<h2>
|
|
Page Not Found
|
|
</h2>
|
|
|
|
{{ $link := printf "/ui%s" .Request.URL }}
|
|
<a href="{{ $link }}" class="block m-[1em]">
|
|
<code>
|
|
{{ $link }}
|
|
</code>
|
|
</a>
|
|
</header>
|
|
|
|
<div class="m-[2em]">
|
|
<p class="italic font-bold">
|
|
Sorry, the page you were looking for could not be found.
|
|
</p>
|
|
</div>
|
|
|
|
<p class="text-sm">
|
|
If you clicked a link, perhaps it was broken.
|
|
</p>
|
|
<p class="text-sm">
|
|
Please try again.
|
|
</p>
|
|
|
|
<p class="text-sm">
|
|
If the issue persists, please reach out to <a href="mailto:support@inventory-plus-plus.com" class="font-bold underline">support</a>.
|
|
</p>
|
|
</section>
|