Final registration failed html page

This commit is contained in:
Vadim Melnikov 2021-03-05 14:31:45 +03:00
parent c9875596c0
commit 4ab15526ee

View File

@ -1,20 +1,12 @@
<!DOCTYPE HTML> {% extends 'base/base.html' %}
<html>
<head> {% block title %}
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous"> Регистрация закрыта
<title>Регистрация закрыта</title> {% endblock %}
</head>
<body> {% block content %}
<header> <div style="margin: 10%; text-align: center;">
<nav class="navbar navbar-light bg-light"> <p style="color: rgb(201, 58, 63); font-size: 72px;">К сожалению, регистрация закрыта.</p>
<div class="container-fluid"> <a type="button" class="btn btn-outline-primary btn-lg" href="/">На главную</a>
<a class="navbar-brand" href="/"><img width=30 src="/static/main/img/logo.png">Access Controller</a> </div>
</div> {% endblock %}
</nav>
</header>
<div style="margin: 10%; text-align: center;">
<p style="color: rgb(201, 58, 63); font-size: 72px;">К сожалению, регистрация закрыта.</p>
<a type="button" class="btn btn-outline-primary btn-lg" href="/">На главную</a>
</div>
</body>
</html>