actix-admin/templates/not_found.html

25 lines
775 B
HTML
Raw Normal View History

2022-10-07 17:03:09 +02:00
<!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>