actix-admin/templates/not_found.html
Manuel Gugger 5f515c96eb fix typo
2022-10-07 17:11:42 +02:00

24 lines
774 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>