-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
61 lines (57 loc) · 1.79 KB
/
Copy patherror.html
File metadata and controls
61 lines (57 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/bootstrap/bootstrap.css">
<link rel="stylesheet" href="css/fontawesome/css/all.css">
<style>
*{
box-sizing: border-box;
font-family: Comfortaa;
}
body{
height: 100vh;
background-image: url("./images/main_bg.png");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.card{
box-shadow: 0px 3px 6px rgb(0, 14, 53);
}
.card .card-text{
font-size: 16px;
}
</style>
<title>Error</title>
</head>
<body class="d-flex align-items-center justify-content-center">
<!-- Card: Error Card -->
<div class="card col-4 alert alert-danger border border-danger text-danger">
<!-- Card Title -->
<h3 class="card-title">
<i class="fa fa-window-close me-2"></i>Errors:
</h3>
<!-- End Of Card Title -->
<hr>
<!-- Card Body -->
<div class="card-body">
<!-- Card Text -->
<p class="card-text">
OOPS! We are sorry, There's an error please check!
</p>
<!-- End Of Card Text -->
<hr>
<!-- Back To Login Page -->
<a href="login.html" class="btn btn-sm btn-danger">
<i class="fa fa-arrow-alt-circle-left me-1"></i> Back
</a>
<!-- End Of Back To Login Page -->
</div>
<!-- End Of Card Body -->
</div>
<!-- End Of Card: Error Card -->
</body>
</html>