-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
66 lines (49 loc) · 2.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<title>Gfg & Leetcode Status</title>
<style>
body {
background-color: black;
}
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
</head>
<body>
<div class="container ">
<div class="is-flex is-justify-content-space-around pt-3">
<h2 class="has-text-centered mb-1" style="color: #808080; font-weight: bold;">GLeet Stats</h2>
<span class="tag is-danger is-rounded is-light autoOn" style="display: none;">UpdateOn</span>
<span class="tag is-primary is-rounded is-light autoOf"> UpdateOf</span>
</div>
<div class="p-5">
<div class="box has-text-centered inputCont ">
<input class="input is-primary mt-3" type="text" id="leetId" placeholder="Enter Leetcode Username">
<input class="input is-primary mt-3" type="text" id="gfgId" placeholder="Enter GFG Username">
<button class="button is-link mt-3" id="submit">Submit</button>
</div>
</div>
<div class="p-5">
<div class="card stats" style="display: none;">
<div class="leetDiv " id="leetDiv">
<img src="./images/leetcode.png"
style="height: 30px; display: flex; justify-content: center;margin: 0 auto;" alt="">
<div id="leetStats"></div>
</div>
<div class="gfgDiv mt-4" id="gfgDiv">
<img src="./images/gfg.png"
style="height: 30px; display: flex; justify-content: center;margin: 0 auto;" alt="">
<div id="gfgStats" class="tags"></div>
</div>
</div>
</div>
<div class="p-3">
<button class="button is-primary is-fullwidth" id="clearStorage" disabled>Reset</button>
<button class="button is-danger is-fullwidth mt-3" id="startUpdate" disabled>Start AutoUpdate</button>
<button class="button is-link is-fullwidth mt-3" style="display: none;" id="stopUpdate" disabled>Stop
AutoUpdate</button>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>