open-redirect/api/src/templates/404.html

18 lines
541 B
HTML

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Not found</title>
<link rel="stylesheet" href="/static/styles.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="w-full h-full flex flex-col justify-center items-center">
<div class="bg-2 tile">
<h1 class="flex justify-center items-center">404 - Not found</h1>
<img src="/static/not_found.gif" alt="">
</div>
</div>
</body>
</html>