-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp-states.html
More file actions
110 lines (101 loc) · 4.36 KB
/
help-states.html
File metadata and controls
110 lines (101 loc) · 4.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Understanding temporary account states</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>Support Center</header>
<main>
<h1>Understanding Temporary Account States</h1>
<section id="intro">
<p>To help protect accounts from unauthorized access and improve overall platform safety, we’ve introduced a new, enhanced verification system. This system works quietly in the background and may apply additional security checks depending on account activity, sign-in behavior, and regional factors. Most users won’t notice any changes. In some cases, however, you may be asked to complete extra steps or experience temporary limitations while verification is in progress.</p>
</section>
<hr>
<section id="what-are-they">
<h2>What Are Temporary Account States?</h2>
<p>A temporary account state occurs when the system applies a short-term restriction or modification to your account. This does <strong>not</strong> indicate a permanent problem or policy violation.</p>
<p>
Common causes include:
<ul>
<li>Routine security verifications</li>
<li>Recent password or account changes</li>
<li>System maintenance or updates</li>
<li>Unusual login activity or location changes</li>
</ul>
</p>
<p>These states are designed to protect your account and ensure its proper functioning.</p>
</section>
<hr>
<section id="signs-of-tempstate">
<h2>Signs Your Account May Be in a Temporary State</h2>
<p>
You might notice:
<ul>
<li>Limited access to certain features</li>
<li>Temporary prompts to verify your identity</li>
<li>Warnings or notifications about unusual activity</li>
<li>Short delays in processing actions or requests</li>
</ul>
</p>
<p>These are normal and typically resolve automatically once the system completes its checks.</p>
</section>
<hr>
<section id="how-long">
<h2>How Long Do Temporary States Last?</h2>
<p>
The duration varies depending on the type of verification or system process:
<ul>
<li><b>Automatic system checks</b> usually resolve within a few minutes to a few hours.</li>
<li><b>Security verifications</b> may take up to 24 hours depending on account activity and workload.</li>
<li><b>Maintenance-related restrictions</b> are usually lifted as soon as maintenance is complete.</li>
</ul>
</p>
<p>Patience is often the best approach, as attempting repeated actions may prolong the temporary state.</p>
</section>
<hr>
<section id="recommended-actions">
<h2>Recommended Actions During Temporary States</h2>
<p>
While your account is in a temporary state, you can:
<ul>
<li>Ensure you are using the same device and browser you normally use</li>
<li>Avoid repeated login attempts or multiple password changes</li>
<li>Check for notifications or verification prompts</li>
<li>Wait for the system to complete its checks</li>
</ul>
</p>
<p>In most cases, temporary states resolve automatically, restoring full account functionality without intervention.</p>
</section>
<hr>
<section id="when-support">
<h2>When to Contact Support</h2>
<p>You generally do <strong>not</strong> need to contact support for temporary account states. However, if the restriction persists significantly beyond the expected timeframe or prevents you from performing essential actions, support can help verify your account and provide guidance.</p>
</section>
<hr>
<section id="outro">
<p>Temporary account states are part of the platform’s ongoing efforts to protect your account and data. Understanding them can help you navigate minor restrictions calmly and avoid unnecessary frustration.</p>
</section>
<section id="was-it-helpful">
<p><i>Was this information helpful?</i></p>
<div id="helpful-buttons">
<button onclick="getFeedback();">Yes</button>
<button onclick="getFeedback();">No</button>
</div>
</section>
<section id="helpful-thx">
<p style="margin-bottom: 5px;"><i>Thanks for your feedback.</i></p>
</section>
</main>
</body>
<script>
const helpful = document.getElementById("was-it-helpful");
const thanks = document.getElementById("helpful-thx");
function getFeedback() {
helpful.style.display = "none";
thanks.style.display = "flex";
}
</script>
</html>