mirror of https://github.com/MISP/misp-modules
29 lines
899 B
HTML
29 lines
899 B
HTML
<!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" />
|
||
<title>Not Found</title>
|
||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
||
</head>
|
||
|
||
|
||
<body>
|
||
<div class="d-flex align-items-center justify-content-center vh-100">
|
||
<div class="text-center">
|
||
<h1 class="display-1 fw-bold">404</h1>
|
||
<p class="fs-3"> <span class="text-danger">Opps!</span> Page not found.</p>
|
||
<p class="lead">
|
||
The page you’re looking for doesn’t exist.
|
||
</p>
|
||
<a href="/" class="btn btn-primary">Go Home</a>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
|
||
|
||
</html>
|