forked from k-reyes-bbm/cloudflare-error-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs-challenge.html
60 lines (51 loc) · 1.36 KB
/
js-challenge.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="robots" content="noindex, nofollow">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Security Check - Conjointly</title>
<link rel="icon" href="mono-logo.png">
<style>
body {
background-color: #043CF7;
color: #fff;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 1.5;
}
/* Container in the centre of the page with margins on left and right */
.container {
text-align: left;
top: 50%;
margin-right: auto;
margin-left: auto;
width: 800px;
max-width: 90%;
padding-top: 2em;
}
small {
font-size: 14px;
}
a {
color: white;
cursor: pointer;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<p><img src="logo.png" style="max-width: 90px;"></p>
<div id="CAPTCHA_BOX_DIV">
<p>
Please complete the security check to access this page.
</p>
::IM_UNDER_ATTACK_BOX::
<p>
<small><strong>Ray ID:</strong> ::RAY_ID::</small>
</p>
</div>
</div>
</body>
</html>