roseyshi's picture
Upload 3 files
c66717e verified
Raw
History Blame Contribute Delete
588 Bytes
<!-- templates/error.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body class="container mt-5">
<h2 class="text-center text-danger">Error Occurred</h2>
<p class="text-center">{{ error_message }}</p>
<div class="text-center mt-4">
<a href="/" class="btn btn-secondary">Go Back</a>
</div>
</body>
</html>