-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
110 lines (109 loc) · 3.31 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
106
107
108
109
110
<html class="no-js" lang>
<head>
<title>Extension</title>
<!-- <script src="https://unpkg.com/axios/dist/axios.min.js"></script> -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="home.css" />
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=Sofia"
rel="stylesheet"
/>
<script src="/lodash/lodash.js" type="text/javascript"></script>
<script
src="/cloudinary-core/cloudinary-core.js"
type="text/javascript"
></script>
</head>
<body style="border: 2px solid #667eea; padding: 5px">
<div
style="display: flex; justify-content: space-between; margin-bottom: 5px"
>
<span style="font-family: Sofia; font-size: 25px; color: #667eea"
><b>Gisty</b></span
>
<img
src="https://www.flaticon.com/svg/static/icons/svg/1250/1250285.svg"
alt="logout"
id="logout_btn"
style="height: 30px; width: 30px"
/>
</div>
<button id="ss" class="btn">Take SS</button>
<button
id="ss_in"
class="btn"
style="display: none; margin-bottom: 10px; background-color: aquamarine"
>
SS success
</button>
<br />
<div class="input-container">
<input
type="text"
id="subject_name"
placeholder="Subject Name"
name="Subject Name"
/>
<label for="subject_name"></label>
</div>
<div class="input-container">
<input
type="text"
id="lecture_name"
placeholder="Lecture Name"
name="Lecture Name"
/>
<label for="lecture_name"></label>
</div>
<div class="input-container">
<input
type="number"
id="num_lines"
value="5"
min="1"
placeholder="No. of lines"
name="No. of lines"
/>
<label for="lecture_name"></label>
</div>
<input type="text" id="transcript" style="display: none" />
<button id="stop" class="btn" style="display:none; margin-bottom: 10px">Stop</button>
<button id="resume" style="display: none; margin-bottom: 10px" class="btn">
Resume
</button>
<button id="start" class="btn" style="margin-bottom: 10px">Start</button>
<button id="clear" style="margin-bottom: 10px" class="btn">
Clear
</button>
<button id="submit" style="display: none; margin-bottom: 10px" class="btn">
Submit
</button>
<br />
<canvas id="fake" style="display: none"></canvas>
</body>
<script src="global.js"></script>
<script src="screenshot.js"></script>
<script src="app.js"></script>
<script src="auth.js"></script>
</html>
<style>
img:hover {
cursor: pointer;
}
</style>