-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
105 lines (92 loc) · 2.92 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- Compiled and minified CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<!-- Main CSS File -->
<link rel="stylesheet" href="style.css" />
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<!--Navigation for normal screens-->
<nav id="navigation">
<div class="nav-wrapper">
<a href="#" class="brand-logo center" style="font-weight: 500"
>Breast Cancer Detection</a
>
<ul id="nav-mobile" class="left hide-on-med-and-down"></ul>
</div>
</nav>
<!--Navigation ends-->
<div class="container">
<!-- Page Content goes here -->
<div class="file-field input-field">
<div class="btn">
<span>File</span>
<input type="file" accept="image/*" id="capture" capture="camera" />
</div>
<div class="file-path-wrapper">
<input
class="file-path validate"
type="text"
placeholder="Please upload an image!"
/>
</div>
</div>
<div class="row">
<div class="col l4 xl4"></div>
<div class="picture col s12 l4 m12 xl4">
<div id="PicturePreview">
<img id="PredictedPicture" src="" alt="" />
</div>
</div>
<div class="col l4 xl4"></div>
</div>
<div class="row">
<div class="col l4 xl4"></div>
<div class="button col s12 l4 m12 xl4">
<div class="PredictButton">
<button
id="button"
class="waves-effect waves-light btn-large center-align"
type="submit"
name="action"
>
Predict
<i class="material-icons right">send</i>
</button>
</div>
</div>
<div class="col l4 xl4"></div>
</div>
<div class="row">
<div class="col l4 xl4"></div>
<div class="col col s12 l4 m12 xl4">
<table class="centered" id="myTable">
<thead>
<tr>
<th>Classification</th>
<th>Accuracy</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="col l4 xl4"></div>
</div>
</div>
<!-- Main JavaScript File -->
<script src="script.js"></script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</body>
</html>