-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.php
More file actions
76 lines (48 loc) · 2.04 KB
/
Copy pathfaq.php
File metadata and controls
76 lines (48 loc) · 2.04 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
<?php
?>
<!DOCTYPE html>
<html>
<head>
<title>Terms and condition of ActiveCampaign</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body{background-color: cyan;}
#faq {
width: 70%;
height: auto;
background-color: cyan;
box-shadow: 0px 30px 50px rgba(0,0,0,0.6);
margin: 1em auto;
padding: 2em;
opacity: 0.8;
}
.close-btn{font-size: 1.5em;}
</style>
</head>
<body>
<div id="faq">
<i class="fa fa-times close-btn" onclick="cls1()"></i>
<center><h1>FAQs</h1></center>
<h3>1. Deposit Funds</h3>
<p>Due to the extensive amount on the platform, agents must contact customer service to get the lastest wallet address before making every transfer.</p>
<p>Once the deposit is successfully completed, please provide the transfer receipt to our online customer service so the finance departmnet can verify the corressponding transfer.</p>
<p>For instant payment processing, please ensure that the crypto type and transfer amount match the wallet address provided by the customer service.</p>
<p>If you encounter any issues during the deposit process, please reach out to our online customer service for assistance.</p>
<h3>2. Withdrawals</h3>
<h4>Please apply for withdrawal after you finished all your job of the day.
The withdrawal will be process within 24hours.</h4>
<h3>3. Invites</h3>
<p>Agents who invite new users to join the platform and work consistently will get referral rebates from the company. The referral rebates will be 20%.</p>
<h3>4. Customer Service</h3>
<p>For further assistance, please click "Contact Us" on the platform to reach our online customer service team.</p>
<script>
function cls1() {
window.location.href = 'profile.php';
}
</script>
</body>
</html>
</div>
</body>
</html>