-
Notifications
You must be signed in to change notification settings - Fork 0
/
not-found.html
35 lines (33 loc) · 886 Bytes
/
not-found.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Sign Up</title>
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./fontawesome-free-5.13.0-web/css/all.css">
<style>
body, html {
height: 100%;
}
.activeErr
{
padding: 0.5rem;
border: 1px solid red;
}
</style>
</head>
<body>
<div class="d-flex" style="height: 90%;">
<div class="row m-auto w-100">
<div class="mx-auto" style="width: 350px;">
<div class="card bg-light text-dark">
<article style = "font-size: 2.5em;text-align: center;">
404 Not found
</article>
</div>
</div>
</div>
</div>
</body>
<script src="client/header.js"></script>
</html>