-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
53 lines (49 loc) · 2.37 KB
/
popup.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
</html>
<!DOCTYPE html>
<html lang="en">
<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 rel="stylesheet" href="popup.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
</head>
<body>
<div>
<div class="new-container">
<header class="header">
<img src="images/icon32.png" class="mr-2">
<div class="title">COURSERA ASSISTANT</div>
</header>
<main class="main">
<div class="my-header">Get Shareable Link</div>
<div class="mb-2">
<div class="input-group">
<span id="copyButton" title="Copy to clipboard"><i class="fa fa-clipboard"></i></span>
<input type="text" id="shareLink" class="form-control" value="No content">
</div>
</div>
<div class="my-header">Get Question</div>
<div class="align-items-center d-flex justify-content-between mb-2">
<button class="code" id="scanButton"><i class="fa fa-search mr-2"></i>SCAN QUESTION</button>
<button class="code" id="saveButton"><i class="fa fa-save mr-2"></i>SAVE QUIZ</button>
</div>
<div class="align-items-center d-flex justify-content-center">
<button class="code" id="autoButton"><i class="fa fa-bolt mr-2"></i>AUTO GRADE</button>
</div>
</main>
<footer class="footer">
<div class="rounded-social-buttons">
<a class="social-button facebook" href="https://www.facebook.com/entyd1004/" target="_blank"><i
class="fa fa-facebook"></i></a>
<a class="social-button youtube" href="https://github.com/entyd1004" target="_blank"><i
class="fa fa-github"></i></a>
</div>
</footer>
</div>
</div>
<script src="popup.js"></script>
<script src="getshareablelink.js"></script>
</body>
</html>