Spaces:
Paused
Paused
| <html> | |
| <head> | |
| <title>Server Error</title> | |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
| <style> | |
| body { | |
| font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | |
| background-color: #f8f9fa; | |
| padding-top: 50px; | |
| padding-bottom: 50px; | |
| color: #343a40; | |
| min-height: 100vh; | |
| display: flex; | |
| align-items: center; | |
| } | |
| .error-container { | |
| text-align: center; | |
| max-width: 600px; | |
| margin: 0 auto; | |
| } | |
| .error-code { | |
| font-size: 8rem; | |
| font-weight: 800; | |
| color: #fd7e14; | |
| line-height: 1; | |
| margin-bottom: 1rem; | |
| text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); | |
| position: relative; | |
| } | |
| .error-code::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: 0; | |
| left: 50%; | |
| transform: translateX(-50%); | |
| width: 100px; | |
| height: 4px; | |
| background: linear-gradient(90deg, transparent, #fd7e14, transparent); | |
| } | |
| .error-icon { | |
| font-size: 5rem; | |
| color: #fd7e14; | |
| margin-bottom: 1.5rem; | |
| animation: pulse 2s infinite; | |
| } | |
| @keyframes pulse { | |
| 0% { | |
| transform: scale(1); | |
| } | |
| 50% { | |
| transform: scale(1.1); | |
| } | |
| 100% { | |
| transform: scale(1); | |
| } | |
| } | |
| .error-title { | |
| font-size: 2rem; | |
| font-weight: 600; | |
| margin-bottom: 1rem; | |
| color: #343a40; | |
| } | |
| .error-message { | |
| font-size: 1.1rem; | |
| color: #6c757d; | |
| margin-bottom: 2rem; | |
| } | |
| .btn-primary { | |
| background: linear-gradient(135deg, #0d6efd 0%, #0099ff 100%); | |
| border: none; | |
| padding: 0.6rem 1.5rem; | |
| border-radius: 0.5rem; | |
| font-weight: 500; | |
| transition: all 0.3s ease; | |
| } | |
| .btn-primary:hover { | |
| background: linear-gradient(135deg, #0957cc 0%, #0080d6 100%); | |
| transform: translateY(-2px); | |
| box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <div class="error-container"> | |
| <div class="error-icon"> | |
| <i class="fas fa-exclamation-triangle"></i> | |
| </div> | |
| <div class="error-code">500</div> | |
| <h1 class="error-title">Server Error</h1> | |
| <p class="error-message"> | |
| Something went wrong on our servers. We're working to fix the issue as soon as possible. | |
| Please try again later. | |
| </p> | |
| <a href="{{ url_for('index') }}" class="btn btn-primary btn-lg"> | |
| <i class="fas fa-home me-2"></i>Return to Home | |
| </a> | |
| </div> | |
| </div> | |
| </body> | |
| </html> |