roseyshi's picture
Upload 3 files
c66717e verified
Raw
History Blame Contribute Delete
755 Bytes
<!-- index.html -->
<!DOCTYPE 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>