Spaces:
Runtime error
Runtime error
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>PHISHING DETECTION</title> | |
| <link rel="stylesheet" href="/static/style.css"> | |
| <link rel="prefetch" href="/models"> | |
| </head> | |
| <body> | |
| <div class="container"> | |
| <header> | |
| <div class="logo">Phishing Detection System</div> | |
| <div class="tagline">Multi-Model URL + HTML Analysis</div> | |
| </header> | |
| <section class="input-section"> | |
| <label class="input-label" for="urlInput">Enter URL to analyze</label> | |
| <div class="input-wrapper"> | |
| <input | |
| type="text" | |
| id="urlInput" | |
| placeholder="https://example.com" | |
| value="https://github.com" | |
| /> | |
| <button class="btn" onclick="analyzeAll()">Analyze</button> | |
| </div> | |
| <div class="btn-group"> | |
| <button class="btn btn-secondary" onclick="clearResults()">Clear</button> | |
| </div> | |
| </section> | |
| <div class="loading" id="loading"> | |
| <div class="loading-bar"></div> | |
| <div class="loading-text">Analyzing with all models</div> | |
| </div> | |
| <div class="results" id="results"> | |
| <!-- Results injected here --> | |
| </div> | |
| <footer> | |
| <div class="footer-text">Machine Learning Phishing Detection</div> | |
| <a href="/models" class="learn-more-btn">Learn More</a> | |
| </footer> | |
| </div> | |
| <script src="/static/script.js?v=4"></script> | |
| </body> | |
| </html> | |