-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
69 lines (68 loc) · 2.76 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link href="Images/iconImage.png" rel="shortcut icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" href="Css/shared/site.css">
<link rel="stylesheet" type="text/css" href="Css/cbt.css"/>
</head>
<body>
<div class="col-12 link-modal" id="link-modal">
<div>
<span>Enter cbt link</span><br>
<p class="col-12">
<input id="cbtLink" type="text" class="cbtLinkInput" placeholder="Enter cbt link" /><span class="cbtLinkSpan"><button onclick="callApi()">Go</button></span>
</p>
<p class="col-12 orParagraph">
<span></span>
<span>OR</span>
<span></span>
</p>
<p style="text-align:center">
<button class="btn btn-purple" onclick="showCbt()">Answer Default Questions</button>
</p>
</div>
</div>
<div class="col-12 mainContent">
<div class="col-12 navbar">
<span>CBT</span><sub>By Ijoni victor</sub>
<span id="timerSpan">0 : 0 : 0</span>
</div>
<div class="col-12 content">
<div class="col-3">
<div>
<div>
<img height="150"/>
</div>
<p>Name: <span id="userName"></span</p>
<p>Email: <span id="emailName"></span</p>
<p>Phone number: <span id="phoneNumber"></span</p><br>
<a class="instructionLink" onclick="showInstruction()">View instructions</a><br>
<p class="total"></p>
<p class="pSubmit"><button onclick="promptUser()">Submit</button></p>
</div>
</div>
<div class="col-9">
<div>
<div id="questionDiv">
</div>
<div id="optionDiv">
</div>
<div id="questionsButton">
</div>
</div>
</div>
</div>
</div>
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close" onclick="closeModal()">×</span>
<div id="instructions"></div>
</div>
<div class="loader2 loader"></div>
</div>
<script src="Js/Shared/app.js"></script>
</body>
</html>