-
Notifications
You must be signed in to change notification settings - Fork 0
/
resultTrain.html
58 lines (53 loc) · 2.4 KB
/
resultTrain.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.17.5/xlsx.min.js"></script>
<title>Chemical AI Lab</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style2.css">
<script type="module" src='resultTrain.js'></script>
</head>
<body>
<div id="chemical" style="border:1px solid;">
<div class="menubar">
<div class="container flex">
<h1 class="logo">
<a href="index.html">Chemical AI Lab</a>
</h1>
</div>
</div>
<div class="testingContainer">
<div class="testContainer flex">
<label for="choiceQ" class="choiceQ">These are the results based on your training. Do you think the AI got it right based on your training?</label>
<label>
<input type="radio" value="Yes" name="choice-radio" onclick="import('./resultTrain.js').then(module => module.saveResponse())">
Yes
</label>
<label>
<input type="radio" value="No" name="choice-radio" onclick="import('./resultTrain.js').then(module => module.saveResponse())">
No
</label>
<div class="image-container">
<h2>SAFE OBJECTS</h2>
<div class="acceptable" id="acceptable">
</div>
<h2>UNSAFE OBJECTS</h2>
<div class="non-acceptable" id="non-acceptable">
</div>
</div>
<a href="index.html">
<button id="Back" >Start Over</button>
</a>
</div>
</div>
</div>
</body>
</html>