-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
49 lines (47 loc) · 1.46 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
<!-- popup.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OTP fetcher extension</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="title-container">
<img
src="data/icons/glasses-svgrepo-com.png"
style="height: 57px; width: 57px"
/>
<span
style="font-size: 14px; position: absolute; top: 2em; color: #584acc"
>OTP fetcher</span
>
</div>
<div
id="content-container"
style="width: 20rem; height: 10rem; margin: 2rem"
>
<div id="connect-google-account-container">
<p id="connect-account-p">
Connect Your Google Account to use the feature!
</p>
<button id="connect-account-btn">Connect</button>
</div>
<div style="display: none" id="accounts-info-container">
<p id="accounts-info-container-p">Click below to fetch the OTPs</p>
<div id="button-container" class="d-flex justify-content-around">
<button
id="get-results-btn"
class="btn btn-primary"
>
Fetch New OTPs
</button>
<!-- <button id="logout-btn" class="btn btn-primary">Logout</button> -->
</div>
</div>
<div style="display: none" id="results-div"></div>
</div>
<script src="popup.js"></script>
</body>
</html>