Diff of /templates/error.html [000000] .. [b018ba]

Switch to unified view

a b/templates/error.html
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
    <meta charset="UTF-8">
5
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
    <title>Error</title>
7
    <!-- Bootstrap CSS link -->
8
    <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
9
        integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
10
        crossorigin="anonymous">
11
</head>
12
<body>
13
    <div class="container">
14
        <h1 class="text-center text-danger">Error</h1>
15
        <div class="alert alert-danger">
16
            <p>{{ error }}</p>
17
        </div>
18
    </div>
19
</body>
20
</html>