File size: 2,722 Bytes
e4fd6e0
 
ae34acf
e4fd6e0
ae34acf
 
e3566c9
ae34acf
 
 
 
 
 
 
 
 
 
e4fd6e0
ae34acf
e4fd6e0
ae34acf
 
 
 
 
e4fd6e0
ae34acf
 
 
 
 
 
 
 
 
 
 
 
 
 
e4fd6e0
ae34acf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e4fd6e0
ae34acf
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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>
  <!-- Favicon -->
  <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">
    <!-- background orbs -->
    <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>

    <!-- Glowing code -->
    <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>