-
Notifications
You must be signed in to change notification settings - Fork 0
/
error_page.html
88 lines (78 loc) · 2.38 KB
/
error_page.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
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error - nurl</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
font-size: 1em;
background-color: #f7f7f7;
margin: 0;
padding: 40px 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
h1 {
color: #d32f2f;
font-size: 2em;
font-weight: 500;
margin-bottom: 20px;
}
p {
color: #555;
max-width: 500px;
text-align: center;
margin-bottom: 30px;
}
ol {
color: #333;
max-width: 500px;
text-align: left;
margin-bottom: 30px;
}
a {
color: #5c6bc0;
font-weight: 500;
}
a:hover {
color: #7e8af5;
text-decoration: none;
}
.back-button {
padding: 12px 20px;
font-size: 1em;
border: none;
border-radius: 5px;
background-color: #5c6bc0;
color: #fff;
cursor: pointer;
transition: background-color 0.3s, transform 0.1s;
outline: none;
text-decoration: none;
display: inline-block;
}
.back-button:hover {
background-color: #7e8af5;
}
.back-button:active {
transform: translateY(2px);
}
</style>
</head>
<body>
<h1>Domain Resolution Failed</h1>
<p>Sorry, we couldn't resolve the requested <code>.neo</code> domain. To ensure redirection works as expected, please follow the steps below:</p>
<ol>
<li>Ensure that the domain is registered.</li>
<li>Check if the domain has a valid CNAME record pointing to the desired address.</li>
<li>If you've made recent changes, wait a few minutes for the changes to propagate.</li>
<li>Visit the <a href="https://neo.link/faq">Neo domain FAQ</a> or documentation for detailed instructions.</li>
</ol>
</body>
</html>