forked from render-examples/fastai-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (40 loc) · 1.19 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
<html lang='en'>
<head>
<meta charset='utf-8'>
<link rel='stylesheet' href='../static/style.css'>
<script src='../static/client.js'></script>
</head>
<body>
<div>
<div class='center'>
<div class='title'>Classify Instruments 🎻</div>
<p>
Use images of <strong>cellos</strong>, <strong>violins</strong>, or anything you'd like!
</p>
<div class='content'>
<div class='no-display'>
<input id='file-input'
class='no-display'
type='file'
name='file'
accept='image/*'
onchange='showPicked(this)'>
</div>
<button class='choose-file-button' type='button' onclick='showPicker()'>Select Image</button>
<div class='upload-label'>
<label id='upload-label'>No file chosen</label>
</div>
<div>
<img id='image-picked' class='no-display' alt='Chosen Image' height='200'>
</div>
<div class='analyze'>
<button id='analyze-button' class='analyze-button' type='button' onclick='analyze()'>Analyze</button>
</div>
<div class='result-label'>
<label id='result-label'></label>
</div>
</div>
</div>
</div>
</body>
</html>