actix-admin/templates/not_found.html
2022-10-07 17:03:09 +02:00

25 lines
775 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
{% include "head.html" %}
</head>
<body>
<div class="is-flex is-justify-content-center is-align-items-center" style=" height: 100vh;">
<div class="columns">
<div class="has-text-centered is-half ml-4 mt-5">
<h1 class="is-size-1 has-text-weight-bold has-text-primary">404</h1>
<p class="is-size-5 has-text-weight-medium"> <span class="has-text-danger">Oops!</span> Page not
found.</p>
<p class="is-size-6 mb-2">
The page youre looking for doesnt exist.
</p>
<a href="/admin/" class="button is-primary">Go to Admin</a>
</div>
</div>
</div>
</body>
</html>