-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
105 lines (93 loc) · 2.51 KB
/
Copy path404.html
File metadata and controls
105 lines (93 loc) · 2.51 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html>
<head>
<meta
http-equiv="Content-Security-Policy"
content="script-src 'nonce-aem' 'strict-dynamic' 'unsafe-inline' http: https:; base-uri 'self'; object-src 'none';"
move-to-http-header="true"
>
<title>Error | IDFC FIRST Bank</title>
<script nonce="aem" type="text/javascript">
window.isErrorPage = true;
window.errorCode = '404';
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Page not found">
<script nonce="aem" src="/scripts/scripts.js" type="module" crossorigin="use-credentials"></script>
<script nonce="aem" type="module">
import { sampleRUM } from '/scripts/aem.js';
sampleRUM('404', { source: document.referrer });
</script>
<link rel="stylesheet" href="/styles/styles.css">
<style>
main.error {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 40px 20px;
}
main.error .section {
padding: 0;
}
main.error .error-image {
width: 100%;
margin: 0 auto 16px;
}
main.error .error-image img {
max-width: 75%;
height: auto;
}
main.error .error-title {
font-size: 48px;
font-weight: 600;
color: #25243B;
margin: 0;
letter-spacing: -2px;
line-height: 64px;
}
main.error .error-description {
font-size: 14px;
font-family: 'Inter', sans-serif;
color: #54565B;
margin: 20px 0 30px;
line-height: normal;
}
main.error .error-description a {
color: #c41e3a;
text-decoration: none;
font-weight: 600;
}
main.error .error-description a:hover {
text-decoration: none;
}
@media (max-width: 768px) {
main.error .error-title {
font-size: 24px;
letter-spacing: -1px;
line-height: 1.42;
}
main.error .error-description {
font-size: 14px;
}
}
</style>
<link rel="stylesheet" href="/styles/lazy-styles.css">
</head>
<body>
<header></header>
<main class="error">
<div class="section">
<div class="error-image">
<img src="/icons/error-404.svg" alt="Page not found">
</div>
<h1 class="error-title">AW-SNAP!</h1>
<h1 class="error-title">TECHNOLOGY CAN BE DIFFICULT SOMETIMES.</h1>
<p class="error-description">
Please try again after some time or visit our <a href="/">Home Page</a> for further details.
</p>
</div>
</main>
<footer></footer>
</body>
</html>