-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (27 loc) · 1.07 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ear Disease Detection</title>
<meta name="description" content="Ear Disease Detection">
<meta name="author" content="SitePoint">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
</head>
<body>
<div class="container">
<h1> Ear Disease Detection</h1>
<!-- <input id="urlText" /> -->
<input type="file" id="file-select" name="photos[]" class="select_photos mt-5"/>
<br />
<button type="button" name="button" id="sendData" class="btn btn-primary mt-5">Predict</button>
<h5> Prediction: <span id="result"></span> </h5>
</div>
<!-- SCRIPTS -->
<script
src="https://code.jquery.com/jquery-3.4.0.js"
integrity="sha256-DYZMCC8HTC+QDr5QNaIcfR7VSPtcISykd+6eSmBW5qo="
crossorigin="anonymous"></script>
<script src="index.js"> </script>
</body>
</html>