-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (72 loc) · 2 KB
/
index.html
File metadata and controls
75 lines (72 loc) · 2 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
<!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>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/1.9.6/tailwind.min.css" integrity="sha512-l7qZAq1JcXdHei6h2z8h8sMe3NbMrmowhOl+QkP3UhifPpCW2MC4M0i26Y8wYpbz1xD9t61MLT9L1N773dzlOA==" crossorigin="anonymous" />
<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-subpixel 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">
cloudflare-error
</span>
</div>
<p class="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 href="/cf-pages/cf-waf-block.html">
WAF Block
</a>
</div>
<div>
<a href="/cf-pages/cf-500.html">
500 Class Errors
</a>
</div>
<div>
<a href="/cf-pages/cf-1000.html">
1000 Class Errors
</a>
</div>
<div>
<a href="/cf-pages/cf-challenge-basic.html">
Basic Security Challenge
</a>
</div>
<div>
<a href="/cf-pages/cf-waf-challenge.html">
WAF Challenge
</a>
</div>
<div>
<a href="/cf-pages/cf-country-challenge.html">
Country Challenge
</a>
</div>
<div>
<a href="/cf-pages/cf-attack.html">
I'm Under Attack Mode™ Challenge
</a>
</div>
<div>
<a href="/cf-pages/cf-rate-limit.html">
429 errors
</a>
</div>
</div>
</body>
</html>