File size: 735 Bytes
6c50e42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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>