Spaces:
Sleeping
Sleeping
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Match History | IPL AI Predictor</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <nav class="navbar"> | |
| <div class="logo"> | |
| <span class="ai-glow">Predict</span>IPL | |
| </div> | |
| <ul class="nav-links"> | |
| <li><a href="index.html">Live Prediction</a></li> | |
| <li><a href="history.html" class="active">Match History</a></li> | |
| </ul> | |
| </nav> | |
| <main class="dashboard history-dashboard"> | |
| <header class="section-header"> | |
| <h2>AI Prediction History</h2> | |
| <p>Session initialized today. Awaiting current match completion.</p> | |
| </header> | |
| <section class="history-container" style="display: flex; justify-content: center; width: 100%;"> | |
| <div class="ball-history-panel panel" | |
| style="width: 100%; max-width: 800px; text-align: center; padding: 4rem;"> | |
| <h3 style="margin-bottom: 1.5rem; color: var(--accent-cyan); font-size: 1.5rem; border: none;"> | |
| Initialize Sequence: Day 1</h3> | |
| <p style="color: var(--text-main); font-size: 1.1rem; line-height: 1.8;"> | |
| The prediction model's memory state was wiped and initialized <strong>today</strong>.<br> | |
| There are currently <span style="color: #ef4444; font-weight: bold;">0</span> past matches recorded | |
| in the system.<br><br> | |
| </p> | |
| <p style="color: var(--text-muted); font-size: 0.95rem;"> | |
| Live ball-by-ball accuracy tracking will begin saving to the database dynamically as soon as today's | |
| live predictions conclude. | |
| </p> | |
| <div class="spinner" style="margin: 3rem auto; border-top-color: var(--accent-green);"></div> | |
| </div> | |
| </section> | |
| </main> | |
| <script src="history.js"></script> | |
| </body> | |
| </html> |