-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
139 lines (128 loc) · 5.41 KB
/
index.html
File metadata and controls
139 lines (128 loc) · 5.41 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AutoRewards</title>
<link href="./css/main.css" rel="stylesheet">
</head>
<body>
<!-- Header -->
<div class="app-header">
<div class="header-icon">
<img src="./icons/trophy.png" alt="Rewards">
</div>
<div>
<h1 class="app-title">AutoRewards</h1>
<p class="app-subtitle">Bing Rewards Assistant, Simple. Fast. Automated.</p>
</div>
</div>
<!-- Main Content Card -->
<div class="main-content">
<div class="button-group">
<button type="button" class="btn-action btn-desktop" id="desktopButton">
<img src="./icons/desktop.svg" alt="Desktop">
Desktop
</button>
<button type="button" class="btn-action btn-mobile" id="mobileButton">
<img src="./icons/mobile.svg" alt="Mobile">
Mobile
</button>
<button type="button" class="btn-action btn-both" id="desktopMobileButton">
<img src="./icons/devices.svg" alt="Both">
Both
</button>
</div>
<!-- Progress Bar -->
<div class="progress-container">
<!-- Search Counter Display -->
<div class="search-counter" id="searchCounter" style="display: none;">
<span class="counter-phase" id="counterPhase">
<img src="./icons/desktop.svg" alt="Phase" id="counterPhaseIcon">
<span id="counterPhaseText">Desktop</span>
</span>
<div class="counter-right">
<span class="counter-count" id="counterCount">0 / 0</span>
<span class="counter-queue" id="counterQueue" style="display: none;">
<img src="./icons/mobile.svg" alt="Queued">
<span>Queued</span>
</span>
</div>
</div>
<div class="progress">
<div class="progress-bar" role="progressbar" style="width: 0%"></div>
</div>
<!-- Stop Button -->
<button type="button" class="btn-stop" id="stopButton" style="display: none;">
<img src="./icons/stop.svg" alt="Stop">
Stop Searches
</button>
</div>
<!-- Settings Form -->
<div class="form-section">
<div class="form-row">
<div class="form-group">
<label class="form-label">
<img src="./icons/desktop.svg" alt="Desktop">
Desktop Searches
</label>
<input type="number" class="form-control" id="totDesktopSearchesForm" min="1" value="">
</div>
<div class="form-group">
<label class="form-label">
<img src="./icons/mobile.svg" alt="Mobile">
Mobile Searches
</label>
<input type="number" class="form-control" id="totMobileSearchesForm" min="1" value="">
</div>
</div>
<div class="form-row mb-0">
<div class="form-group">
<label class="form-label">
<img src="./icons/clock.svg" alt="Clock">
Min Delay (ms)
</label>
<input type="number" class="form-control" id="waitingBetweenSearchesFormMin" min="100" value="">
</div>
<div class="form-group">
<label class="form-label">
<img src="./icons/clock.svg" alt="Clock">
Max Delay (ms)
</label>
<input type="number" class="form-control" id="waitingBetweenSearchesFormMax" min="100" value="">
</div>
</div>
</div>
<!-- Sponsor Toggle -->
<div class="sponsor-toggle">
<label class="toggle-label">
<img src="./icons/info.svg" alt="Info">
Show sponsor after completion
</label>
<label class="switch">
<input type="checkbox" id="sponsorToggle" checked>
<span class="slider"></span>
</label>
</div>
</div>
<!-- Footer -->
<footer class="app-footer">
<span class="footer-version" id="appVersion"></span>
<div class="footer-links">
<a class="footer-link" href="" target="_blank" title="Author - Anuj Kumar Yadav" id="authorWebsiteLink">
<img src="./icons/user.svg" alt="Author">
</a>
<a class="footer-link" href="" target="_blank" title="GitHub - Source Code" id="repositoryGithubLink">
<img src="./icons/github.svg" alt="GitHub">
</a>
<a class="footer-link" href="" target="_blank" title="Chrome Store" id="storeLink">
<img src="./icons/chrome.svg" alt="Chrome Store">
</a>
<a class="footer-link" href="" target="_blank" title="Microsoft Rewards" id="rewardsLink">
<img src="./icons/checkmark.svg" alt="Rewards">
</a>
</div>
</footer>
<script type="module" src="./js/popup.js"></script>
</body>
</html>