Files
Claper/lib/claper_web/templates/error/404.html.heex
2025-07-03 14:55:23 +02:00

49 lines
1.8 KiB
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
{csrf_meta_tag()}
<title>Not found - Claper</title>
<link rel="icon" type="image/png" href="/images/favicon.png" />
<link phx-track-static rel="stylesheet" href="/assets/app.css" />
<link phx-track-static rel="stylesheet" href="/assets/custom.css" />
<script defer phx-track-static type="text/javascript" src="/assets/app.js">
</script>
</head>
<body class="">
<div class="min-h-full">
<!-- Main column -->
<div class="flex flex-col">
<main class="flex-1">
<div>
<div class="relative min-h-screen bg-black">
<div class="flex justify-center md:items-center h-screen w-full p-8 md:p-10 lg:p-14 sm:rounded-lg md:rounded-none ">
<div class="max-w-xl w-full space-y-4 mx-auto">
<div class="text-center">
<h2 class="mt-6 font-bold text-gray-100">
<a href="/">
<img src="/images/icons/danger.png" class="h-24 w-auto inline" />
</a>
</h2>
<p class="mt-6 text-xl md:text-3xl font-bold text-gray-100">
{gettext("Oops, page doesn't exist.")}
</p>
<div class="mt-10">
<a href="/" class="text-sm text-white underline">
{gettext("Return to home")}
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
</body>
</html>