-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
75 lines (72 loc) · 2.01 KB
/
index.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Hello World
</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
.magic {
background: linear-gradient(to right, #00dbde 0%, #fc00ff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
</head>
<body class="antialiased text-left layout-row">
<div class="w-full text-center max-w-lg mx-auto mt-20 p-5">
<div class="font-bold text-3xl text-gray-900">
<span class="magic text-black">
mjwebs/cloudflare-error
</span>
</div>
<p class="mt-4 text-gray-900 font-normal">
This is a list of free templates for use in your organisation's Cloudflare custom pages section. 🎉
</p>
<div class="text-gray-500 font-normal text-sm pt-4 space-y-4">
<div>
<a target="_blank" href="/cloudflare-error/cf-attack.html">
I'm Under Attack Mode™ Challenge
</a>
</div>
<div>
<a target="_blank" href="/cloudflare-error/cf-waf-block.html">
WAF Block
</a>
</div>
<div>
<a target="_blank" href="/cloudflare-error/cf-500.html">
500 Class Errors
</a>
</div>
<div>
<a target="_blank" href="/cloudflare-error/cf-1000.html">
1000 Class Errors
</a>
</div>
<div>
<a target="_blank" href="/cloudflare-error/cf-challenge-basic.html">
Basic Security Challenge
</a>
</div>
<div>
<a target="_blank" href="/cloudflare-error/cf-waf-challenge.html">
WAF Challenge
</a>
</div>
<div>
<a target="_blank" href="/cloudflare-error/cf-country-challenge.html">
Country Challenge
</a>
</div>
<div>
<a target="_blank" href="/cloudflare-error/cf-rate-limit.html">
429 errors
</a>
</div>
</div>
</body>
</html>