| <!doctype html> |
| <html lang="en"> |
|
|
| <head> |
| <meta charset="utf-8" /> |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| <title>Page Not Found — AI Medical Intelligence Pipeline</title> |
| |
| <link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}" /> |
| <link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-192.png') }}" /> |
| <link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='apple-touch-icon.png') }}" /> |
| <meta name="description" content="The page you requested could not be found." /> |
| <link rel="preconnect" href="https://fonts.googleapis.com" /> |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin /> |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" |
| rel="stylesheet" /> |
| <link rel="stylesheet" href="{{ url_for('static', filename='css/error_pages.css') }}" /> |
| </head> |
|
|
| <body> |
| <div class="error-page"> |
| |
| <div class="error-orb"></div> |
| <div class="error-orb"></div> |
| <div class="error-orb"></div> |
|
|
| <span class="error-badge error-badge-404"> |
| <svg width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"> |
| <circle cx="12" cy="12" r="10" /> |
| <line x1="12" y1="8" x2="12" y2="12" /> |
| <line x1="12" y1="16" x2="12.01" y2="16" /> |
| </svg> |
| Error 404 |
| </span> |
|
|
| |
| <div class="error-code-wrap"> |
| <div class="error-code">404</div> |
| <div class="error-scanline"></div> |
| </div> |
|
|
| <h1 class="error-title">Page Not Found</h1> |
| <p class="error-desc"> |
| We couldn't find the page you were looking for. It may have been moved, deleted, |
| or the URL might be incorrect. |
| </p> |
|
|
| <div class="error-actions"> |
| <a href="{{ url_for('home') }}" class="btn-err-primary"> |
| <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" |
| stroke-linecap="round"> |
| <path d="M3 12L12 3l9 9" /> |
| <path d="M9 21V12h6v9" /> |
| </svg> |
| Back to Home |
| </a> |
| <button onclick="history.back()" class="btn-err-secondary"> |
| <svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" |
| stroke-linecap="round"> |
| <path d="M19 12H5" /> |
| <path d="M12 19l-7-7 7-7" /> |
| </svg> |
| Go Back |
| </button> |
| </div> |
|
|
| <p class="error-footer"> |
| <a href="{{ url_for('home') }}">AI Medical Intelligence Pipeline</a> — CT Scan Analysis |
| </p> |
| </div> |
| </body> |
|
|
| </html> |