codebook / potato /templates /error.html
davidjurgens's picture
Deploy: Potato — Codebook Annotation
aceb1b2 verified
Raw
History Blame Contribute Delete
1.11 kB
<!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.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body class="potato-page-center">
<div class="potato-page-card" style="text-align: center;">
<div class="potato-page-icon potato-page-icon-error">
<i class="fas fa-exclamation-triangle"></i>
</div>
<h1 class="potato-page-title">Something went wrong</h1>
<p class="potato-page-subtitle">{{ message or error_message or "An unexpected error occurred. Please try again." }}</p>
<a href="/" class="shadcn-button shadcn-button-outline" style="text-decoration: none;">
<i class="fas fa-arrow-left me-2"></i>Go Back
</a>
</div>
</body>
</html>