-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.html
More file actions
26 lines (26 loc) · 771 Bytes
/
Copy patherror.html
File metadata and controls
26 lines (26 loc) · 771 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Error</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
body {
text-align: center;
margin: 50px;
}
.error-message {
font-size: 1.5rem;
color: red;
}
</style>
</head>
<body>
<div class="container">
<h1 class="error-message">Der opstod en fejl!</h1>
<p>Vi kunne ikke behandle din forespørgsel. Prøv venligst igen senere.</p>
<a href="index.html" class="btn btn-primary">Tilbage til forsiden</a>
</div>
</body>
</html>