Flask-Project-Template/src/templates/error.html

30 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>{{title}}</title>
<link rel="shortcut icon" href="{{ url_for('static', filename="faveicon.png")}}">
<link rel="stylesheet" href="{{ url_for('static', filename="css/bootstrap/bootstrap.min.css")}}">
<link rel="stylesheet" href="{{ url_for('static', filename="css/bootstrap/bootstrap-datepicker.css")}}">
<link rel="stylesheet" href="{{ url_for('static', filename="css/main.css")}}">
</head>
<body>
<div class="container">
<div class="row">
<div class="col justify-content-center text-center">
<!-- <p class="alert-danger" style="color:#ffffff;">....</p> -->
<h1 class="errorTxt">{{title}}</h1>
<p>{{message}}</p>
</div>
</div>
</div>
<!-- For Bootstrap in this exact order... -->
<script src="{{ url_for('static', filename="js/bootstrap/jquery-3.3.1.slim.min.js")}}"></script>
<script src="{{ url_for('static', filename="js/bootstrap/popper.min.js")}}"></script>
<script src="{{ url_for('static', filename="js/bootstrap/bootstrap.min.js")}}"></script>
</body>
</html>