Spaces:
Runtime error
Runtime error
| <!-- index.html --> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Anomaly Detection</title> | |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <div class="container mt-5"> | |
| <h2 class="text-center">Upload Your Data for Anomaly Detection</h2> | |
| <form action="/predict" method="post" enctype="multipart/form-data" class="text-center"> | |
| <input type="file" name="file" class="form-control mt-3" required> | |
| <button type="submit" class="btn btn-primary mt-3">Upload & Predict</button> | |
| </form> | |
| </div> | |
| </body> | |
| </html> |