frontend error management enhancement
This commit is contained in:
44
app/templates/admin/errors/400.html
Normal file
44
app/templates/admin/errors/400.html
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "admin/errors/base.html" %}
|
||||
|
||||
{% block icon %}❌{% endblock %}
|
||||
|
||||
{% block title %}400 - Bad Request{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">❌</div>
|
||||
<div class="status-code">400</div>
|
||||
<div class="status-name">Bad Request</div>
|
||||
<div class="error-message">
|
||||
The request could not be processed due to invalid data or malformed syntax.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:history.back()" class="btn btn-primary">Go Back</a>
|
||||
<a href="/admin/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Need help? <a href="/admin/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/admin/errors/401.html
Normal file
44
app/templates/admin/errors/401.html
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "admin/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔐{% endblock %}
|
||||
|
||||
{% block title %}401 - Authentication Required{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">🔐</div>
|
||||
<div class="status-code">401</div>
|
||||
<div class="status-name">Authentication Required</div>
|
||||
<div class="error-message">
|
||||
You need to be authenticated to access this admin resource.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/admin/login" class="btn btn-primary">Log In</a>
|
||||
<a href="/admin/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Having login issues? <a href="/admin/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/admin/errors/403.html
Normal file
44
app/templates/admin/errors/403.html
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "admin/errors/base.html" %}
|
||||
|
||||
{% block icon %}🚫{% endblock %}
|
||||
|
||||
{% block title %}403 - Access Denied{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">🚫</div>
|
||||
<div class="status-code">403</div>
|
||||
<div class="status-name">Access Denied</div>
|
||||
<div class="error-message">
|
||||
You don't have permission to access this admin resource. If you believe this is an error, please contact your administrator.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/admin/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Need elevated permissions? <a href="/admin/support">Contact Administrator</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/admin/errors/404.html
Normal file
44
app/templates/admin/errors/404.html
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "admin/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔍{% endblock %}
|
||||
|
||||
{% block title %}404 - Page Not Found{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">🔍</div>
|
||||
<div class="status-code">404</div>
|
||||
<div class="status-name">Page Not Found</div>
|
||||
<div class="error-message">
|
||||
The admin page you're looking for doesn't exist or has been moved.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/admin/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Can't find what you're looking for? <a href="/admin/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
58
app/templates/admin/errors/422.html
Normal file
58
app/templates/admin/errors/422.html
Normal file
@@ -0,0 +1,58 @@
|
||||
{% extends "admin/errors/base.html" %}
|
||||
|
||||
{% block icon %}📋{% endblock %}
|
||||
|
||||
{% block title %}422 - Validation Error{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">📋</div>
|
||||
<div class="status-code">422</div>
|
||||
<div class="status-name">Validation Error</div>
|
||||
<div class="error-message">
|
||||
The data you submitted contains errors. Please review and correct the highlighted fields.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
{% if details and details.validation_errors %}
|
||||
<div class="validation-errors" style="margin: 2rem 0; text-align: left;">
|
||||
<h3 style="color: #dc2626; font-size: 1rem; margin-bottom: 1rem;">Validation Errors:</h3>
|
||||
<ul style="list-style: none; padding: 0;">
|
||||
{% for error in details.validation_errors %}
|
||||
<li style="padding: 0.5rem; margin-bottom: 0.5rem; background: #fef2f2; border-left: 3px solid #dc2626; border-radius: 0.25rem;">
|
||||
<strong style="color: #991b1b;">{{ error.loc | join(' → ') }}:</strong>
|
||||
<span style="color: #7f1d1d;">{{ error.msg }}</span>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:history.back()" class="btn btn-primary">Go Back</a>
|
||||
<a href="/admin/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Still having issues? <a href="/admin/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
52
app/templates/admin/errors/429.html
Normal file
52
app/templates/admin/errors/429.html
Normal file
@@ -0,0 +1,52 @@
|
||||
{% extends "admin/errors/base.html" %}
|
||||
|
||||
{% block icon %}⏱️{% endblock %}
|
||||
|
||||
{% block title %}429 - Too Many Requests{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">⏱️</div>
|
||||
<div class="status-code">429</div>
|
||||
<div class="status-name">Too Many Requests</div>
|
||||
<div class="error-message">
|
||||
You've made too many requests in a short period. Please slow down and try again in a moment.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
{% if details and details.retry_after %}
|
||||
<div style="margin: 1.5rem 0; padding: 1rem; background: #fef3c7; border-radius: 0.5rem;">
|
||||
<p style="color: #92400e; font-weight: 600;">
|
||||
Please wait {{ details.retry_after }} seconds before trying again.
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:location.reload()" class="btn btn-primary">Retry</a>
|
||||
<a href="/admin/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Experiencing persistent rate limits? <a href="/admin/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/admin/errors/500.html
Normal file
44
app/templates/admin/errors/500.html
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "admin/errors/base.html" %}
|
||||
|
||||
{% block icon %}⚙️{% endblock %}
|
||||
|
||||
{% block title %}500 - Server Error{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">⚙️</div>
|
||||
<div class="status-code">500</div>
|
||||
<div class="status-name">Internal Server Error</div>
|
||||
<div class="error-message">
|
||||
Something went wrong on our end. Our team has been notified and is working to fix the issue.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/admin/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:location.reload()" class="btn btn-secondary">Retry</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Issue persisting? <a href="/admin/support">Report this error</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/admin/errors/502.html
Normal file
44
app/templates/admin/errors/502.html
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "admin/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔌{% endblock %}
|
||||
|
||||
{% block title %}502 - Bad Gateway{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">🔌</div>
|
||||
<div class="status-code">502</div>
|
||||
<div class="status-name">Bad Gateway</div>
|
||||
<div class="error-message">
|
||||
We're unable to reach the service right now. This is usually temporary. Please try again in a moment.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:location.reload()" class="btn btn-primary">Retry</a>
|
||||
<a href="/admin/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Service unavailable for extended period? <a href="/admin/support">Check Status</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
223
app/templates/admin/errors/base.html
Normal file
223
app/templates/admin/errors/base.html
Normal file
@@ -0,0 +1,223 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}{{ status_code }} - {{ status_name }}{% endblock %} | Admin Portal</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #1f2937;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.error-container {
|
||||
background: white;
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
||||
max-width: 600px;
|
||||
width: 100%;
|
||||
padding: 3rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.error-icon {
|
||||
font-size: 5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.status-code {
|
||||
font-size: 6rem;
|
||||
font-weight: 700;
|
||||
color: #667eea;
|
||||
line-height: 1;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.status-name {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
color: #374151;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.error-message {
|
||||
font-size: 1.1rem;
|
||||
color: #6b7280;
|
||||
margin-bottom: 2rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.error-code {
|
||||
display: inline-block;
|
||||
background: #f3f4f6;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 0.5rem;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.875rem;
|
||||
color: #6b7280;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.action-buttons {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 0.5rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: #667eea;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background: #5568d3;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: #f3f4f6;
|
||||
color: #374151;
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
background: #e5e7eb;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.debug-info {
|
||||
margin-top: 2rem;
|
||||
padding: 1.5rem;
|
||||
background: #fef3c7;
|
||||
border-left: 4px solid #f59e0b;
|
||||
border-radius: 0.5rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.debug-info h3 {
|
||||
color: #92400e;
|
||||
font-size: 1rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.debug-info pre {
|
||||
background: white;
|
||||
padding: 1rem;
|
||||
border-radius: 0.25rem;
|
||||
overflow-x: auto;
|
||||
font-size: 0.875rem;
|
||||
color: #374151;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.debug-item {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.debug-label {
|
||||
font-weight: 600;
|
||||
color: #92400e;
|
||||
display: inline-block;
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
.debug-value {
|
||||
color: #1f2937;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.support-link {
|
||||
margin-top: 2rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid #e5e7eb;
|
||||
font-size: 0.875rem;
|
||||
color: #6b7280;
|
||||
}
|
||||
|
||||
.support-link a {
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.support-link a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
{% block extra_styles %}{% endblock %}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="error-container">
|
||||
{% block content %}
|
||||
<div class="error-icon">{% block icon %}⚠️{% endblock %}</div>
|
||||
<div class="status-code">{{ status_code }}</div>
|
||||
<div class="status-name">{{ status_name }}</div>
|
||||
<div class="error-message">{{ message }}</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
{% block action_buttons %}
|
||||
<a href="/admin/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
||||
{% endblock %}
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% block extra_content %}{% endblock %}
|
||||
|
||||
<div class="support-link">
|
||||
{% block support_link %}
|
||||
Need help? <a href="/admin/support">Contact Support</a>
|
||||
{% endblock %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
42
app/templates/admin/errors/generic.html
Normal file
42
app/templates/admin/errors/generic.html
Normal file
@@ -0,0 +1,42 @@
|
||||
{% extends "admin/errors/base.html" %}
|
||||
|
||||
{% block icon %}⚠️{% endblock %}
|
||||
|
||||
{% block title %}{{ status_code }} - {{ status_name }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">⚠️</div>
|
||||
<div class="status-code">{{ status_code }}</div>
|
||||
<div class="status-name">{{ status_name }}</div>
|
||||
<div class="error-message">{{ message }}</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/admin/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information (Admin Only)</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Need assistance? <a href="/admin/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
76
app/templates/fallback/404.html
Normal file
76
app/templates/fallback/404.html
Normal file
@@ -0,0 +1,76 @@
|
||||
<!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>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: white;
|
||||
}
|
||||
.container {
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
max-width: 600px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 8rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
||||
}
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
font-weight: 400;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
p {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 2rem;
|
||||
opacity: 0.9;
|
||||
}
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 1rem 2.5rem;
|
||||
background: white;
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
border-radius: 50px;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
|
||||
}
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
|
||||
}
|
||||
.path {
|
||||
margin-top: 2rem;
|
||||
font-size: 0.9rem;
|
||||
opacity: 0.7;
|
||||
font-family: 'Courier New', monospace;
|
||||
word-break: break-all;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>404</h1>
|
||||
<h2>Page Not Found</h2>
|
||||
<p>Sorry, the page you're looking for doesn't exist or has been moved.</p>
|
||||
<a href="/" class="btn">Go Home</a>
|
||||
<div class="path">Path: {{ path }}</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
79
app/templates/fallback/500.html
Normal file
79
app/templates/fallback/500.html
Normal file
@@ -0,0 +1,79 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>500 - Server Error</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: white;
|
||||
}
|
||||
.container {
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
max-width: 600px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 8rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
||||
}
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
font-weight: 400;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
p {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 2rem;
|
||||
opacity: 0.9;
|
||||
}
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 1rem 2.5rem;
|
||||
background: white;
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
border-radius: 50px;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
|
||||
margin: 0 0.5rem;
|
||||
}
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
|
||||
}
|
||||
.error-code {
|
||||
margin-top: 2rem;
|
||||
font-size: 0.9rem;
|
||||
opacity: 0.7;
|
||||
font-family: 'Courier New', monospace;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>500</h1>
|
||||
<h2>Internal Server Error</h2>
|
||||
<p>Something went wrong on our end. We're working to fix it.</p>
|
||||
<div>
|
||||
<a href="/" class="btn">Go Home</a>
|
||||
<a href="javascript:location.reload()" class="btn">Retry</a>
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
79
app/templates/fallback/generic.html
Normal file
79
app/templates/fallback/generic.html
Normal file
@@ -0,0 +1,79 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{{ status_code }} - Error</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: white;
|
||||
}
|
||||
.container {
|
||||
text-align: center;
|
||||
padding: 2rem;
|
||||
max-width: 600px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 8rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
|
||||
}
|
||||
h2 {
|
||||
font-size: 2rem;
|
||||
font-weight: 400;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
p {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 2rem;
|
||||
opacity: 0.9;
|
||||
}
|
||||
.btn {
|
||||
display: inline-block;
|
||||
padding: 1rem 2.5rem;
|
||||
background: white;
|
||||
color: #667eea;
|
||||
text-decoration: none;
|
||||
border-radius: 50px;
|
||||
font-weight: 600;
|
||||
transition: all 0.3s ease;
|
||||
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
|
||||
margin: 0 0.5rem;
|
||||
}
|
||||
.btn:hover {
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 6px 20px rgba(0,0,0,0.3);
|
||||
}
|
||||
.error-code {
|
||||
margin-top: 2rem;
|
||||
font-size: 0.9rem;
|
||||
opacity: 0.7;
|
||||
font-family: 'Courier New', monospace;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>{{ status_code }}</h1>
|
||||
<h2>{{ status_name }}</h2>
|
||||
<p>{{ message }}</p>
|
||||
<div>
|
||||
<a href="/" class="btn">Go Home</a>
|
||||
<a href="javascript:history.back()" class="btn">Go Back</a>
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
33
app/templates/shop/errors/400.html
Normal file
33
app/templates/shop/errors/400.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{% extends "shop/errors/base.html" %}
|
||||
|
||||
{% block icon %}❌{% endblock %}
|
||||
|
||||
{% block title %}400 - Invalid Request{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
<div class="error-icon">❌</div>
|
||||
<div class="status-code">400</div>
|
||||
<div class="status-name">Invalid Request</div>
|
||||
<div class="error-message">
|
||||
The request couldn't be processed. This might be due to invalid information or a technical issue.
|
||||
</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:history.back()" class="btn btn-primary">Go Back</a>
|
||||
<a href="/" class="btn btn-secondary">Go to Home</a>
|
||||
</div>
|
||||
|
||||
<div class="support-link">
|
||||
Need help? <a href="/contact">Contact us</a>
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
33
app/templates/shop/errors/401.html
Normal file
33
app/templates/shop/errors/401.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{% extends "shop/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔐{% endblock %}
|
||||
|
||||
{% block title %}401 - Authentication Required{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
<div class="error-icon">🔐</div>
|
||||
<div class="status-code">401</div>
|
||||
<div class="status-name">Please Log In</div>
|
||||
<div class="error-message">
|
||||
You need to be logged in to access this page. Please sign in to continue shopping.
|
||||
</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/login" class="btn btn-primary">Log In</a>
|
||||
<a href="/register" class="btn btn-secondary">Create Account</a>
|
||||
</div>
|
||||
|
||||
<div class="support-link">
|
||||
Don't have an account? <a href="/register">Sign up now</a>
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
33
app/templates/shop/errors/403.html
Normal file
33
app/templates/shop/errors/403.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{% extends "shop/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔒{% endblock %}
|
||||
|
||||
{% block title %}403 - Access Restricted{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
<div class="error-icon">🔒</div>
|
||||
<div class="status-code">403</div>
|
||||
<div class="status-name">Access Restricted</div>
|
||||
<div class="error-message">
|
||||
This page requires authentication or special permissions to access. Please log in to continue.
|
||||
</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/login" class="btn btn-primary">Log In</a>
|
||||
<a href="/" class="btn btn-secondary">Go to Home</a>
|
||||
</div>
|
||||
|
||||
<div class="support-link">
|
||||
Need help accessing your account? <a href="/contact">Contact support</a>
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
33
app/templates/shop/errors/404.html
Normal file
33
app/templates/shop/errors/404.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{% extends "shop/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔍{% endblock %}
|
||||
|
||||
{% block title %}404 - Page Not Found{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
<div class="error-icon">🔍</div>
|
||||
<div class="status-code">404</div>
|
||||
<div class="status-name">Page Not Found</div>
|
||||
<div class="error-message">
|
||||
Sorry, we couldn't find the page you're looking for. The product or page may have been moved or is no longer available.
|
||||
</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/" class="btn btn-primary">Continue Shopping</a>
|
||||
<a href="/products" class="btn btn-secondary">View All Products</a>
|
||||
</div>
|
||||
|
||||
<div class="support-link">
|
||||
Can't find what you're looking for? <a href="/contact">Contact us</a> and we'll help you find it.
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
46
app/templates/shop/errors/422.html
Normal file
46
app/templates/shop/errors/422.html
Normal file
@@ -0,0 +1,46 @@
|
||||
{% extends "shop/errors/base.html" %}
|
||||
|
||||
{% block icon %}📝{% endblock %}
|
||||
|
||||
{% block title %}422 - Invalid Information{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
<div class="error-icon">📝</div>
|
||||
<div class="status-code">422</div>
|
||||
<div class="status-name">Please Check Your Information</div>
|
||||
<div class="error-message">
|
||||
Some of the information you provided isn't valid. Please review the form and try again.
|
||||
</div>
|
||||
|
||||
{% if details and details.validation_errors %}
|
||||
<div style="margin: 2rem auto; max-width: 400px; text-align: left; background: #fef2f2; padding: 1.5rem; border-radius: 0.75rem; border-left: 4px solid var(--color-primary);">
|
||||
<h3 style="color: var(--color-text); font-size: 0.875rem; margin-bottom: 0.75rem; font-weight: 600;">Please correct:</h3>
|
||||
<ul style="list-style: none; padding: 0; margin: 0;">
|
||||
{% for error in details.validation_errors %}
|
||||
<li style="margin-bottom: 0.5rem; color: #7f1d1d; font-size: 0.875rem;">
|
||||
• {{ error.msg }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:history.back()" class="btn btn-primary">Go Back and Fix</a>
|
||||
<a href="/" class="btn btn-secondary">Go to Home</a>
|
||||
</div>
|
||||
|
||||
<div class="support-link">
|
||||
Having trouble? <a href="/contact">We're here to help</a>
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
41
app/templates/shop/errors/429.html
Normal file
41
app/templates/shop/errors/429.html
Normal file
@@ -0,0 +1,41 @@
|
||||
{% extends "shop/errors/base.html" %}
|
||||
|
||||
{% block icon %}⏱️{% endblock %}
|
||||
|
||||
{% block title %}429 - Please Slow Down{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
<div class="error-icon">⏱️</div>
|
||||
<div class="status-code">429</div>
|
||||
<div class="status-name">Please Slow Down</div>
|
||||
<div class="error-message">
|
||||
You're browsing a bit too fast! Please wait a moment before continuing.
|
||||
</div>
|
||||
|
||||
{% if details and details.retry_after %}
|
||||
<div style="margin: 1.5rem 0; padding: 1rem; background: #fef3c7; border-radius: 0.75rem;">
|
||||
<p style="color: #92400e; font-weight: 600;">
|
||||
Please wait {{ details.retry_after }} seconds
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:location.reload()" class="btn btn-primary">Try Again</a>
|
||||
<a href="/" class="btn btn-secondary">Go to Home</a>
|
||||
</div>
|
||||
|
||||
<div class="support-link">
|
||||
Questions? <a href="/contact">Contact us</a>
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
33
app/templates/shop/errors/500.html
Normal file
33
app/templates/shop/errors/500.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{% extends "shop/errors/base.html" %}
|
||||
|
||||
{% block icon %}😔{% endblock %}
|
||||
|
||||
{% block title %}500 - Something Went Wrong{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
<div class="error-icon">😔</div>
|
||||
<div class="status-code">500</div>
|
||||
<div class="status-name">Oops! Something Went Wrong</div>
|
||||
<div class="error-message">
|
||||
We're experiencing technical difficulties. Our team has been notified and is working to fix the issue. Please try again in a few moments.
|
||||
</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/" class="btn btn-primary">Go to Home</a>
|
||||
<a href="javascript:location.reload()" class="btn btn-secondary">Try Again</a>
|
||||
</div>
|
||||
|
||||
<div class="support-link">
|
||||
Issue persisting? <a href="/contact">Let us know</a> and we'll help you out.
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
33
app/templates/shop/errors/502.html
Normal file
33
app/templates/shop/errors/502.html
Normal file
@@ -0,0 +1,33 @@
|
||||
{% extends "shop/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔧{% endblock %}
|
||||
|
||||
{% block title %}502 - Service Temporarily Unavailable{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
<div class="error-icon">🔧</div>
|
||||
<div class="status-code">502</div>
|
||||
<div class="status-name">Temporarily Unavailable</div>
|
||||
<div class="error-message">
|
||||
We're having trouble connecting to our systems. This is usually temporary. Please try again in a few moments.
|
||||
</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:location.reload()" class="btn btn-primary">Try Again</a>
|
||||
<a href="/" class="btn btn-secondary">Go to Home</a>
|
||||
</div>
|
||||
|
||||
<div class="support-link">
|
||||
If this continues, <a href="/contact">let us know</a>
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
195
app/templates/shop/errors/base.html
Normal file
195
app/templates/shop/errors/base.html
Normal file
@@ -0,0 +1,195 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}{{ status_code }} - {{ status_name }}{% endblock %}{% if vendor %} | {{ vendor.name }}{% endif %}</title>
|
||||
<style>
|
||||
:root {
|
||||
/* Default theme colors (fallback) */
|
||||
--color-primary: {{ theme.colors.primary if theme and theme.colors else '#6366f1' }};
|
||||
--color-secondary: {{ theme.colors.secondary if theme and theme.colors else '#8b5cf6' }};
|
||||
--color-accent: {{ theme.colors.accent if theme and theme.colors else '#ec4899' }};
|
||||
--color-background: {{ theme.colors.background if theme and theme.colors else '#ffffff' }};
|
||||
--color-text: {{ theme.colors.text if theme and theme.colors else '#1f2937' }};
|
||||
--color-border: {{ theme.colors.border if theme and theme.colors else '#e5e7eb' }};
|
||||
--font-heading: {{ theme.fonts.heading if theme and theme.fonts else "'Inter', sans-serif" }};
|
||||
--font-body: {{ theme.fonts.body if theme and theme.fonts else "'Inter', sans-serif" }};
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--font-body);
|
||||
background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: var(--color-text);
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.error-container {
|
||||
background: var(--color-background);
|
||||
border-radius: 1.5rem;
|
||||
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
||||
max-width: 600px;
|
||||
width: 100%;
|
||||
padding: 3rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
{% if vendor and vendor.logo %}
|
||||
.vendor-logo {
|
||||
max-width: 150px;
|
||||
max-height: 60px;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
{% endif %}
|
||||
|
||||
.error-icon {
|
||||
font-size: 5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.status-code {
|
||||
font-size: 6rem;
|
||||
font-weight: 700;
|
||||
color: var(--color-primary);
|
||||
line-height: 1;
|
||||
margin-bottom: 0.5rem;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
.status-name {
|
||||
font-size: 1.75rem;
|
||||
font-weight: 600;
|
||||
color: var(--color-text);
|
||||
margin-bottom: 1rem;
|
||||
font-family: var(--font-heading);
|
||||
}
|
||||
|
||||
.error-message {
|
||||
font-size: 1.125rem;
|
||||
color: #6b7280;
|
||||
margin-bottom: 2.5rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.action-buttons {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 0.75rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: var(--color-primary);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
opacity: 0.9;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: transparent;
|
||||
color: var(--color-primary);
|
||||
border: 2px solid var(--color-primary);
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
background: var(--color-primary);
|
||||
color: white;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.support-link {
|
||||
margin-top: 2.5rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid var(--color-border);
|
||||
font-size: 0.875rem;
|
||||
color: #6b7280;
|
||||
}
|
||||
|
||||
.support-link a {
|
||||
color: var(--color-primary);
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.support-link a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.vendor-info {
|
||||
margin-top: 2rem;
|
||||
font-size: 0.875rem;
|
||||
color: #9ca3af;
|
||||
}
|
||||
|
||||
{% block extra_styles %}{% endblock %}
|
||||
</style>
|
||||
{% if theme and theme.custom_css %}
|
||||
<style>
|
||||
{{ theme.custom_css | safe }}
|
||||
</style>
|
||||
{% endif %}
|
||||
</head>
|
||||
<body>
|
||||
<div class="error-container">
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">{% block icon %}⚠️{% endblock %}</div>
|
||||
<div class="status-code">{{ status_code }}</div>
|
||||
<div class="status-name">{{ status_name }}</div>
|
||||
<div class="error-message">{{ message }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
{% block action_buttons %}
|
||||
<a href="/" class="btn btn-primary">Continue Shopping</a>
|
||||
<a href="/contact" class="btn btn-secondary">Contact Us</a>
|
||||
{% endblock %}
|
||||
</div>
|
||||
|
||||
{% block extra_content %}{% endblock %}
|
||||
|
||||
<div class="support-link">
|
||||
{% block support_link %}
|
||||
Need help? <a href="/contact">Contact our support team</a>
|
||||
{% endblock %}
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
31
app/templates/shop/errors/generic.html
Normal file
31
app/templates/shop/errors/generic.html
Normal file
@@ -0,0 +1,31 @@
|
||||
{% extends "shop/errors/base.html" %}
|
||||
|
||||
{% block icon %}⚠️{% endblock %}
|
||||
|
||||
{% block title %}{{ status_code }} - {{ status_name }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% if vendor and theme and theme.branding and theme.branding.logo %}
|
||||
<img src="{{ theme.branding.logo }}" alt="{{ vendor.name }}" class="vendor-logo">
|
||||
{% endif %}
|
||||
|
||||
<div class="error-icon">⚠️</div>
|
||||
<div class="status-code">{{ status_code }}</div>
|
||||
<div class="status-name">{{ status_name }}</div>
|
||||
<div class="error-message">{{ message }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/" class="btn btn-primary">Continue Shopping</a>
|
||||
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
||||
</div>
|
||||
|
||||
<div class="support-link">
|
||||
Need assistance? <a href="/contact">Contact us</a>
|
||||
</div>
|
||||
|
||||
{% if vendor %}
|
||||
<div class="vendor-info">
|
||||
{{ vendor.name }}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
44
app/templates/vendor/errors/400.html
vendored
Normal file
44
app/templates/vendor/errors/400.html
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "vendor/errors/base.html" %}
|
||||
|
||||
{% block icon %}❌{% endblock %}
|
||||
|
||||
{% block title %}400 - Bad Request{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">❌</div>
|
||||
<div class="status-code">400</div>
|
||||
<div class="status-name">Bad Request</div>
|
||||
<div class="error-message">
|
||||
The request could not be processed due to invalid data or malformed syntax.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:history.back()" class="btn btn-primary">Go Back</a>
|
||||
<a href="/vendor/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Need help? <a href="/vendor/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/vendor/errors/401.html
vendored
Normal file
44
app/templates/vendor/errors/401.html
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "vendor/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔐{% endblock %}
|
||||
|
||||
{% block title %}401 - Authentication Required{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">🔐</div>
|
||||
<div class="status-code">401</div>
|
||||
<div class="status-name">Authentication Required</div>
|
||||
<div class="error-message">
|
||||
You need to be authenticated to access this vendor resource.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/vendor/login" class="btn btn-primary">Log In</a>
|
||||
<a href="/vendor/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Having login issues? <a href="/vendor/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/vendor/errors/403.html
vendored
Normal file
44
app/templates/vendor/errors/403.html
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "vendor/errors/base.html" %}
|
||||
|
||||
{% block icon %}🚫{% endblock %}
|
||||
|
||||
{% block title %}403 - Access Denied{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">🚫</div>
|
||||
<div class="status-code">403</div>
|
||||
<div class="status-name">Access Denied</div>
|
||||
<div class="error-message">
|
||||
You don't have permission to access this vendor resource. Please check with your shop owner or manager.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/vendor/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Need elevated permissions? <a href="/vendor/support">Contact Your Manager</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/vendor/errors/404.html
vendored
Normal file
44
app/templates/vendor/errors/404.html
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "vendor/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔍{% endblock %}
|
||||
|
||||
{% block title %}404 - Page Not Found{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">🔍</div>
|
||||
<div class="status-code">404</div>
|
||||
<div class="status-name">Page Not Found</div>
|
||||
<div class="error-message">
|
||||
The vendor dashboard page you're looking for doesn't exist or has been moved.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/vendor/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Can't find what you're looking for? <a href="/vendor/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
58
app/templates/vendor/errors/422.html
vendored
Normal file
58
app/templates/vendor/errors/422.html
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
{% extends "vendor/errors/base.html" %}
|
||||
|
||||
{% block icon %}📋{% endblock %}
|
||||
|
||||
{% block title %}422 - Validation Error{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">📋</div>
|
||||
<div class="status-code">422</div>
|
||||
<div class="status-name">Validation Error</div>
|
||||
<div class="error-message">
|
||||
The data you submitted contains errors. Please review and correct the highlighted fields.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
{% if details and details.validation_errors %}
|
||||
<div class="validation-errors" style="margin: 2rem 0; text-align: left;">
|
||||
<h3 style="color: #dc2626; font-size: 1rem; margin-bottom: 1rem;">Validation Errors:</h3>
|
||||
<ul style="list-style: none; padding: 0;">
|
||||
{% for error in details.validation_errors %}
|
||||
<li style="padding: 0.5rem; margin-bottom: 0.5rem; background: #fef2f2; border-left: 3px solid #dc2626; border-radius: 0.25rem;">
|
||||
<strong style="color: #991b1b;">{{ error.loc | join(' → ') }}:</strong>
|
||||
<span style="color: #7f1d1d;">{{ error.msg }}</span>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:history.back()" class="btn btn-primary">Go Back</a>
|
||||
<a href="/vendor/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Still having issues? <a href="/vendor/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
52
app/templates/vendor/errors/429.html
vendored
Normal file
52
app/templates/vendor/errors/429.html
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
{% extends "vendor/errors/base.html" %}
|
||||
|
||||
{% block icon %}⏱️{% endblock %}
|
||||
|
||||
{% block title %}429 - Too Many Requests{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">⏱️</div>
|
||||
<div class="status-code">429</div>
|
||||
<div class="status-name">Too Many Requests</div>
|
||||
<div class="error-message">
|
||||
You've made too many requests in a short period. Please slow down and try again in a moment.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
{% if details and details.retry_after %}
|
||||
<div style="margin: 1.5rem 0; padding: 1rem; background: #fef3c7; border-radius: 0.5rem;">
|
||||
<p style="color: #92400e; font-weight: 600;">
|
||||
Please wait {{ details.retry_after }} seconds before trying again.
|
||||
</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:location.reload()" class="btn btn-primary">Retry</a>
|
||||
<a href="/vendor/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Experiencing persistent rate limits? <a href="/vendor/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/vendor/errors/500.html
vendored
Normal file
44
app/templates/vendor/errors/500.html
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "vendor/errors/base.html" %}
|
||||
|
||||
{% block icon %}⚙️{% endblock %}
|
||||
|
||||
{% block title %}500 - Server Error{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">⚙️</div>
|
||||
<div class="status-code">500</div>
|
||||
<div class="status-name">Internal Server Error</div>
|
||||
<div class="error-message">
|
||||
Something went wrong on our end. Our team has been notified and is working to fix the issue.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/vendor/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:location.reload()" class="btn btn-secondary">Retry</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Issue persisting? <a href="/vendor/support">Report this error</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
44
app/templates/vendor/errors/502.html
vendored
Normal file
44
app/templates/vendor/errors/502.html
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
{% extends "vendor/errors/base.html" %}
|
||||
|
||||
{% block icon %}🔌{% endblock %}
|
||||
|
||||
{% block title %}502 - Bad Gateway{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">🔌</div>
|
||||
<div class="status-code">502</div>
|
||||
<div class="status-name">Bad Gateway</div>
|
||||
<div class="error-message">
|
||||
We're unable to reach the service right now. This is usually temporary. Please try again in a moment.
|
||||
</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="javascript:location.reload()" class="btn btn-primary">Retry</a>
|
||||
<a href="/vendor/dashboard" class="btn btn-secondary">Dashboard</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Service unavailable for extended period? <a href="/vendor/support">Check Status</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
223
app/templates/vendor/errors/base.html
vendored
Normal file
223
app/templates/vendor/errors/base.html
vendored
Normal file
@@ -0,0 +1,223 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}{{ status_code }} - {{ status_name }}{% endblock %} | Vendor Portal</title>
|
||||
<style>
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||||
background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #1f2937;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.error-container {
|
||||
background: white;
|
||||
border-radius: 1rem;
|
||||
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
|
||||
max-width: 600px;
|
||||
width: 100%;
|
||||
padding: 3rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.error-icon {
|
||||
font-size: 5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.status-code {
|
||||
font-size: 6rem;
|
||||
font-weight: 700;
|
||||
color: #8b5cf6;
|
||||
line-height: 1;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.status-name {
|
||||
font-size: 1.5rem;
|
||||
font-weight: 600;
|
||||
color: #374151;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.error-message {
|
||||
font-size: 1.1rem;
|
||||
color: #6b7280;
|
||||
margin-bottom: 2rem;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.error-code {
|
||||
display: inline-block;
|
||||
background: #f3f4f6;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 0.5rem;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.875rem;
|
||||
color: #6b7280;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.action-buttons {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
padding: 0.75rem 1.5rem;
|
||||
border-radius: 0.5rem;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
transition: all 0.3s ease;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: #8b5cf6;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background: #7c3aed;
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.btn-secondary {
|
||||
background: #f3f4f6;
|
||||
color: #374151;
|
||||
}
|
||||
|
||||
.btn-secondary:hover {
|
||||
background: #e5e7eb;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
.debug-info {
|
||||
margin-top: 2rem;
|
||||
padding: 1.5rem;
|
||||
background: #fef3c7;
|
||||
border-left: 4px solid #f59e0b;
|
||||
border-radius: 0.5rem;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.debug-info h3 {
|
||||
color: #92400e;
|
||||
font-size: 1rem;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.debug-info pre {
|
||||
background: white;
|
||||
padding: 1rem;
|
||||
border-radius: 0.25rem;
|
||||
overflow-x: auto;
|
||||
font-size: 0.875rem;
|
||||
color: #374151;
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
|
||||
.debug-item {
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.debug-label {
|
||||
font-weight: 600;
|
||||
color: #92400e;
|
||||
display: inline-block;
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
.debug-value {
|
||||
color: #1f2937;
|
||||
font-family: 'Courier New', monospace;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
.support-link {
|
||||
margin-top: 2rem;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid #e5e7eb;
|
||||
font-size: 0.875rem;
|
||||
color: #6b7280;
|
||||
}
|
||||
|
||||
.support-link a {
|
||||
color: #8b5cf6;
|
||||
text-decoration: none;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.support-link a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
{% block extra_styles %}{% endblock %}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="error-container">
|
||||
{% block content %}
|
||||
<div class="error-icon">{% block icon %}⚠️{% endblock %}</div>
|
||||
<div class="status-code">{{ status_code }}</div>
|
||||
<div class="status-name">{{ status_name }}</div>
|
||||
<div class="error-message">{{ message }}</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
{% block action_buttons %}
|
||||
<a href="/vendor/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
||||
{% endblock %}
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% block extra_content %}{% endblock %}
|
||||
|
||||
<div class="support-link">
|
||||
{% block support_link %}
|
||||
Need help? <a href="/vendor/support">Contact Vendor Support</a>
|
||||
{% endblock %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
42
app/templates/vendor/errors/generic.html
vendored
Normal file
42
app/templates/vendor/errors/generic.html
vendored
Normal file
@@ -0,0 +1,42 @@
|
||||
{% extends "vendor/errors/base.html" %}
|
||||
|
||||
{% block icon %}⚠️{% endblock %}
|
||||
|
||||
{% block title %}{{ status_code }} - {{ status_name }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="error-icon">⚠️</div>
|
||||
<div class="status-code">{{ status_code }}</div>
|
||||
<div class="status-name">{{ status_name }}</div>
|
||||
<div class="error-message">{{ message }}</div>
|
||||
<div class="error-code">Error Code: {{ error_code }}</div>
|
||||
|
||||
<div class="action-buttons">
|
||||
<a href="/vendor/dashboard" class="btn btn-primary">Go to Dashboard</a>
|
||||
<a href="javascript:history.back()" class="btn btn-secondary">Go Back</a>
|
||||
</div>
|
||||
|
||||
{% if show_debug %}
|
||||
<div class="debug-info">
|
||||
<h3>🔧 Debug Information</h3>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Path:</span>
|
||||
<span class="debug-value">{{ path }}</span>
|
||||
</div>
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Error Code:</span>
|
||||
<span class="debug-value">{{ error_code }}</span>
|
||||
</div>
|
||||
{% if details %}
|
||||
<div class="debug-item">
|
||||
<span class="debug-label">Details:</span>
|
||||
<pre>{{ details | tojson(indent=2) }}</pre>
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="support-link">
|
||||
Need assistance? <a href="/vendor/support">Contact Support</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user