Files
inventory-plus-plus/templates/pages/not-found.html.tmpl
T
2026-01-19 14:35:52 -07:00

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>