Files
pas/Web/themes/tailadmin-free-tailwind-dashboard-template-main/src/404.html
2025-07-13 09:32:53 +00:00

72 lines
2.5 KiB
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>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>
404 Error Page | TailAdmin - Tailwind CSS Admin Dashboard Template
</title>
</head>
<body
x-data="{ page: 'page404', 'loaded': true, 'darkMode': false, 'stickyMenu': false, 'sidebarToggle': false, 'scrollTop': false }"
x-init="
darkMode = JSON.parse(localStorage.getItem('darkMode'));
$watch('darkMode', value => localStorage.setItem('darkMode', JSON.stringify(value)))"
:class="{'dark bg-gray-900': darkMode === true}"
>
<!-- ===== Preloader Start ===== -->
<include src="./partials/preloader.html"></include>
<!-- ===== Preloader End ===== -->
<!-- ===== Page Wrapper Start ===== -->
<div
class="relative z-1 flex min-h-screen flex-col items-center justify-center overflow-hidden p-6"
>
<!-- ===== Common Grid Shape Start ===== -->
<include src="./partials/common-grid-shape.html"></include>
<!-- ===== Common Grid Shape End ===== -->
<!-- Centered Content -->
<div class="mx-auto w-full max-w-[242px] text-center sm:max-w-[472px]">
<h1
class="mb-8 text-title-md font-bold text-gray-800 dark:text-white/90 xl:text-title-2xl"
>
ERROR
</h1>
<img src="./images/error/404.svg" alt="404" class="dark:hidden" />
<img
src="./images/error/404-dark.svg"
alt="404"
class="hidden dark:block"
/>
<p
class="mb-6 mt-10 text-base text-gray-700 dark:text-gray-400 sm:text-lg"
>
We cant seem to find the page you are looking for!
</p>
<a
href="index.html"
class="inline-flex items-center justify-center rounded-lg border border-gray-300 bg-white px-5 py-3.5 text-sm font-medium text-gray-700 shadow-theme-xs hover:bg-gray-50 hover:text-gray-800 dark:border-gray-700 dark:bg-gray-800 dark:text-gray-400 dark:hover:bg-white/[0.03] dark:hover:text-gray-200"
>
Back to Home Page
</a>
</div>
<!-- Footer -->
<p
class="absolute bottom-6 left-1/2 -translate-x-1/2 text-center text-sm text-gray-500 dark:text-gray-400"
>
&copy; <span id="year"></span> - TailAdmin
</p>
</div>
<!-- ===== Page Wrapper End ===== -->
</body>
</html>