nitubhai's picture
Rename 404.html to templates/404.html
9e7a66d verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="background-animation">
<div class="gradient-orb orb-1"></div>
<div class="gradient-orb orb-2"></div>
<div class="gradient-orb orb-3"></div>
</div>
<div class="container">
<section class="result-section error glass-card" style="margin-top: 100px; display: block;">
<div class="result-icon">🔍</div>
<h3>404 - Page Not Found</h3>
<p>The page you're looking for doesn't exist or has been moved.</p>
<div style="margin-top: 30px;">
<a href="/" class="btn btn-primary">
<i class="fas fa-home"></i> Go Home
</a>
</div>
</section>
</div>
</body>
</html>