Face_expresion15 / index.html
levi15's picture
Upload 6 files
6c50e42 verified
raw
history blame contribute delete
No virus
735 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Expresso - Image Prediction</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Expresso - Image Prediction</h1>
<form id="uploadForm" enctype="multipart/form-data" action="/predict" method="post">
<label for="imageUpload" style="display: block; text-align: center; margin-bottom: 20px;">Upload your image</label>
<input type="file" id="imageUpload" name="file" style="display: block; margin: 0 auto 20px;" accept="image/*">
<button type="submit" class="upload-btn">Predict</button>
</form>
</div>
</body>
</html>