-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
45 lines (45 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<h1 id="rateValue" hidden>0</h1>
<img src="./icon.png">
<img src="./star.png" id="rateImage" height="10%" style="position: absolute;top: 0px;right: 12%;">
<i class="fa fa-instagram fa-2x" id="instagramId" aria-hidden="true" style="color: #0eb4fb; position: absolute;top: 0px;right: 0px;"></i>
<div>
<input type="radio" id="language1" name="language" value="English" checked>
<label for="English">English</label><br>
<input type="radio" id="language2" name="language" value="فارسی">
<label for="فارسی">
فارسی</label><br>
<input type="checkbox" id="checkBox" style="float: right; margin-top: 25px;">
<h4 id="1Text">Enable volume bars</h4>
<div class="form__group field" style="margin: auto;margin-top: -20px; margin-bottom: 35px;width: 40%;" id="volumePercentDiv" hidden>
<input type="number" id="volumePercent" min="0" max="100" step="5" class="form__field" style="font-size: 16px;" placeholder="Name"/>
<label for="name" class="form__label" style="font-size: 14px;" id="volumeLabel">Volume %</label>
</div>
<input type="checkbox" id="checkBox2" style="float: right;">
<h4 id="2Text">Hide your login credentials</h4>
<input type="checkbox" id="checkBox3" style="float: right;">
<h4 id="4Text">Display a fake error</h4>
<input type="checkbox" id="checkBox4" style="float: right;">
<h4 id="5Text">Display a fake loading</h4>
<h4 id="3Text" style="margin-top: 30px;">Auto login at specific time</h4>
<div class="form__group field" style="padding-top: 20px; margin: auto; margin-top: 20px;">
<input type="time" id="clock" value="08:00" style="font-size: 18px;" class="form__field"/>
<label class="form__label" style="font-size: 16px;" id="clockLabel">Clock</label>
</div>
<a href="#" id="btnAutoLogin">Auto Login</a>
<br>
</div>
<script src="rateus.js"></script>
<script src="btnClick.js"></script>
<script src="popup.js"></script>
<script src="StorageChrome.js"></script>
</body>
</html>