Css для вывода ошибки в системе
This commit is contained in:
@@ -3,12 +3,16 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Ошибка</title>
|
<title>Ошибка</title>
|
||||||
<link href="/static/css/auth.css" type="text/css" rel="stylesheet">
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<link href="/static/css/main.css" type="text/css" rel="stylesheet">
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class="d-flex flex-column h-100">
|
||||||
<h1>Сожалеем</h1>
|
<main class="flex-shrink-0">
|
||||||
<p>{{ error_message }}</p>
|
<div class="container">
|
||||||
<a href="{{ url_for('index') }}"><button>На главную страницу</button></a>
|
<h1 class="mt-5">Сожалеем</h1>
|
||||||
|
<p class="lead"> {{ error_message }}</p>
|
||||||
|
<a href="{{ url_for('index') }}"><button class="btn btn-primary">На главную страницу</button></a>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
Reference in New Issue
Block a user