-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
53 lines (45 loc) · 1.89 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
<!DOCTYPE html>
<html>
<head>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,600;0,700;0,800;0,900;1,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,200;0,400;0,600;0,700;0,800;0,900;1,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>Website Stats</title>
<script src="popup.js"></script>
<style>
.donateBtn{
animation: shake .5s infinite;
}
</style>
</head>
<body>
<div class="ring"></div>
<div class="topRow">
<h1>Website Stats</h1>
<p class="donateBtn"> Donate</p>
</div>
<div class="topBox">
<div class="limitBox">
<label>You have <span class="dailyCount">5</span> searches remaining for today</label>
</div>
<div class="premiumBox">
<label class="premiumTxt">Subscribe to premium for only $10 <span class="StrikeText">$25</span> to get stats of unlimited websites a day</label>
<button id="buyPremiumBtn">Get Premium</button>
</div>
</div>
<form id="urlForm">
<label class="labelSearch" for="urlInput">Website URL:</label>
<input type="text" id="urlInput" placeholder="Enter URL">
<button type="submit">Get Stats</button>
<hr>
<a id="notLoadingLink" class="notLoading">Click here if stats or Captcha is not loading</a>
</form>
<div id="statsContainer"></div>
<iframe id="captchaFrame" sandbox="allow-scripts"></iframe>
</body>
</html>