-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
67 lines (62 loc) · 2.96 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
<html>
<head>
<meta name="viewport" charset="UTF-8" content="width=device-width, initial-scale=1.0"/>
<title>Which-shroom?</title>
<script type="text/javascript" src="scripts/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="scripts/math.min.js"></script>
<script type="text/javascript" src="scripts/materialize.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<script src="scripts/keras.min.js"></script>
<link href="styles/materialize.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="styles/main.css" rel="stylesheet" type="text/css">
</head>
<body>
<nav class="navbar-fixed white black-text">
<div class="row">
<div id="page_header" class="col s12">
<span class="title">WhichShroom?</span>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div id="prediction" class="col s12 m8 offset-m2">
<div class="row">
<span id="pred_text" class="col s8 offset-s2 label pred_display">Is it...</span>
<button id="prediction_button" class="col s4 offset-s4 center btn white">
Edible?
</button>
</div>
</div>
</div>
<div id="content_body" class="row"></div>
<div class="row right-align">
<div class="col s4 offset-s8">
<a href="https://github.com/nasanos/WhichShroom/blob/master/README.md">About</a><br/>
<a class="modal-trigger" href="#disclaimer_modal">Disclaimer</a><br/>
</div>
</div>
<div class="row right-align">
<div class="col s4 offset-s8" id="page_footer">
© Nasanos, 2019
</div>
</div>
<div id="disclaimer_modal" class="modal">
<div class="modal-content">
<span class="modal_label">Disclaimer</span>
<hr/>
<span class="modal_body">
Do not rely on this application for determining the safety of any fungi. The application's results have not been validated by subject-matter experts, and its author makes no claims as to the accuracy of the results in identifying fungi toxicity. Regardless the application's predictions, the application's author is not liable for any damages or other effects pertaining to the ingestion or otherwise of fungi.
</span>
</div>
<div class="modal-footer">
<a class="modal-close btn-flat" href="#">Okay</a>
</div>
</div>
</div>
<script type="text/javascript" src="scripts/main.js"></script>
<script type="text/javascript" src="scripts/init.js"></script>
<script type="text/javascript" src="scripts/input.js"></script>
</body>
</html>