first commit

This commit is contained in:
Mateusz Gruszczyński
2026-02-13 12:42:53 +01:00
commit bc1b4279de
21 changed files with 3835 additions and 0 deletions

27
templates/500.html Normal file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html lang="en" data-bs-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>500 - Server Error | CVE Monitor</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="row justify-content-center align-items-center" style="min-height: 100vh;">
<div class="col-md-6 text-center">
<i class="fas fa-server text-danger" style="font-size: 5rem;"></i>
<h1 class="display-1 fw-bold mt-4">500</h1>
<h2 class="mb-4">Internal Server Error</h2>
<p class="lead text-muted mb-4">
Something went wrong on our end. Please try again later.
</p>
<a href="/" class="btn btn-primary btn-lg">
<i class="fas fa-home me-2"></i>Go Home
</a>
</div>
</div>
</div>
</body>
</html>