Spaces:
Sleeping
Sleeping
<html> | |
<head> | |
<title>Image Classification</title> | |
<style> | |
body { | |
font-family: Arial, sans-serif; | |
max-width: 800px; | |
margin: 0 auto; | |
padding: 20px; | |
} | |
.upload-form { | |
margin: 20px 0; | |
padding: 20px; | |
border: 1px solid #ccc; | |
border-radius: 5px; | |
} | |
</style> | |
</head> | |
<body> | |
<h1>Image Classification</h1> | |
<div class="upload-form"> | |
<form action="/predict" method="post" enctype="multipart/form-data"> | |
<input type="file" name="file" accept="image/*" required> | |
<input type="submit" value="Predict"> | |
</form> | |
</div> | |
</body> | |
</html> |