Skip to content

Commit 40d8049

Browse files
Ritesh SinghRitesh Singh
authored andcommitted
404 page
Signed-off-by: Ritesh Singh <[email protected]>
1 parent 31b5889 commit 40d8049

File tree

3 files changed

+5955
-2
lines changed

3 files changed

+5955
-2
lines changed

404.html

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<title>Login | Tailwind Admin</title>
6+
<meta charset="utf-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8+
<link rel="stylesheet" href="./dist/styles.css">
9+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp"
10+
crossorigin="anonymous">
11+
<style>
12+
.login{
13+
background: url('./dist/images/login-new.jpeg')
14+
}
15+
</style>
16+
</head>
17+
18+
<body class="h-screen font-sans login bg-cover">
19+
<div class="container mx-auto h-full flex flex-1 justify-center items-center">
20+
<div class="w-full max-w-lg">
21+
<div class="leading-loose">
22+
<div class="max-w-xl m-4 p-10 bg-white rounded shadow-xl">
23+
<p class="text-gray-800 font-medium text-center text-xl font-bold">404 - Not Found</p>
24+
<button class="px-4 py-1 text-white font-light tracking-wider bg-gray-900 rounded ml-24" type="submit">Take Me Back To Home</button>
25+
</div>
26+
27+
</div>
28+
</div>
29+
</div>
30+
</body>
31+
32+
</html>

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ <h1 class="text-white">Logo</h1>
9494
</a>
9595
</li>
9696
<li class="border-t border-light-border w-full h-full px-2 py-3">
97-
<a href="#"
97+
<a href="register.html"
9898
class="mx-4 font-sans font-hairline hover:font-normal text-sm text-nav-item no-underline">
9999
Register Page
100100
<span><i class="fa fa-angle-right float-right"></i></span>
101101
</a>
102102
</li>
103103
<li class="border-t border-light-border w-full h-full px-2 py-3">
104-
<a href="#"
104+
<a href="404.html"
105105
class="mx-4 font-sans font-hairline hover:font-normal text-sm text-nav-item no-underline">
106106
404 Page
107107
<span><i class="fa fa-angle-right float-right"></i></span>

0 commit comments

Comments
 (0)