finance-analyzer/src/main/resources/templates/error/404.html

23 lines
762 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Error 404 - Page not found</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="../../static/css/styles.css" th:href="@{/css/style.css}"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"/>
</head>
<body>
<main class="container">
<div class="row">
<div class="col-md-12 text-center">
<h1>Error - Page not found</h1>
<hr>
</div>
</div>
</main>
</body>
</html>