-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.php
More file actions
192 lines (170 loc) · 5.05 KB
/
Copy pathevents.php
File metadata and controls
192 lines (170 loc) · 5.05 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TASK Events & Earnings</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body {
background: #1e1e2f;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: start;
height: 100vh;
overflow-y: auto;
padding: 20px;
position: relative;
}
.close-btn {
position: absolute;
top: 15px;
right: 20px;
background: none;
border: none;
color: #fff;
font-size: 24px;
cursor: pointer;
transition: 0.3s;
}
.close-btn:hover {
color: #e74c3c;
}
.container {
background: #2a2a3c;
border-radius: 10px;
padding: 25px;
width: 90%;
max-width: 800px;
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
text-align: center;
margin-bottom: 15px;
opacity: 0;
transform: translateY(20px);
animation: fadeIn 0.8s ease-out forwards;
line-height: 2em;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
h2 {
font-size: 24px;
margin-bottom: 10px;
color: #f39c12;
}
h3 {
font-size: 18px;
color: #bbb;
}
.earn-container {
background: #33334a;
border-radius: 8px;
padding: 15px;
display: flex;
justify-content: space-between;
align-items: center;
margin: 10px 0;
transition: 0.3s;
cursor: pointer;
opacity: 0;
transform: scale(0.9);
animation: popIn 0.6s ease-out forwards;
}
@keyframes popIn {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
.earn-container:hover {
background: #44445a;
transform: scale(1.05);
}
.earn-container h3, .earn-container h4 {
font-size: 18px;
}
.earn-container h4 {
color: #27ae60;
font-weight: bold;
}
.salary-section {
padding: 20px;
background: #3a3a55;
border-radius: 8px;
text-align: left;
}
.salary-section p {
font-size: 16px;
margin: 10px 0;
}
@media (max-width: 768px) {
.earn-container {
flex-direction: column;
text-align: center;
}
}
</style>
<script>
function closePage() {
window.location.href='profile';
}
</script>
</head>
<body>
<button class="close-btn" onclick="closePage()">X</button>
<div class="container">
<h2>ActiveCampaign Marketing</h2>
<h3>Register new customer activity, valid within 7 days.</h3>
<h2>First Deposit Rewards</h2>
<div class="earn-container">
<h3>Amount: <span>300 USDT</span></h3>
<h4>Get Extra: 20 USDT</h4>
</div>
<div class="earn-container">
<h3>Amount: <span>500 USDT</span></h3>
<h4>Get Extra: 50 USDT</h4>
</div>
<div class="earn-container">
<h3>Amount: <span>1000 USDT</span></h3>
<h4>Get Extra: 120 USDT</h4>
</div>
<div class="earn-container">
<h3>Amount: <span>3000 USDT</span></h3>
<h4>Get Extra: 400 USDT</h4>
</div>
<div class="earn-container">
<h3>Amount: <span>5000 USDT</span></h3>
<h4>Get Extra: 700 USDT</h4>
</div>
<div class="earn-container">
<h3>Amount: <span>10000 USDT</span></h3>
<h4>Get Extra: 1500 USDT</h4>
</div>
</div>
<div class="container salary-section">
<h2>Basic Salary Requirement</h2>
<p>VIP1 - complete 3 series of orders and receive 50 USDT</p>
<p>VIP2 - complete 4 series of orders and receive 100 USDT</p>
<p>VIP3 - complete 5 series of orders and receive 200 USDT</p>
<p>VIP4 - complete 6 series of orders and receive 300 USDT</p>
</div>
</body>
</html>