[b8dc97]: / home.html

Download this file

33 lines (22 with data), 939 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Esophageal Detection API</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
<div class="center" id='first'>
<form class="form-input" action="{{url_for('upload_file')}}" id='myform' method=post enctype=multipart/form-data>
<label for="file-ip-1">Select Image</label>
<input type="file" id="file-ip-1" accept="image/*" onchange="showPreview(event);" name=file>
<div class="preview">
<img id="file-ip-1-preview">
</div>
<input type=submit value=Predict id="thebutton">
</form>
</div>
<script type='text/javascript' src="{{url_for('static', filename='js/script.js') }}"></script>
</body>