Initial commit

This commit is contained in:
2020-04-11 20:44:27 +03:00
commit a9fd9cb522
66 changed files with 1168 additions and 0 deletions

20
templates/index.html Executable file
View File

@@ -0,0 +1,20 @@
{% extends 'base.html' %}
{% block head %}
<title>Wifi авторизация</title>
{% endblock %}
{% block body %}
<div class="media m-5">
<img src="{{ url_for('static', filename='info.png') }}" class="mr-4 rounded-circle" style="height:50px;">
<div class="media-body">
<h5 class="mt-0">Доступ к общей информации</h5>
Приложению будут доступны ваши личные данные
</div>
</div>
<div class="text-right pr-3 rounded-bottom" style="background-color: #F0F0F4;">
<a href="{{ url_for('login') }}" class="btn m-3 px-5" style="color:white; background-color: #4680C2;">Разрешить</a>
<button class="btn m-3 px-1">Отмена</button>
</div>
{% endblock %}