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

21
templates/login.html Executable file
View File

@@ -0,0 +1,21 @@
{% extends 'base.html' %}
{% block head %}
{% endblock %}
{% block body %}
<form class="container mt-4" action="/login/" method="POST">
<input class="form-control my-3" type="text" name="login" id="login" placeholder="Телефон или email">
<input class="form-control my-3" type="password" name="password" id="password" placeholder="Пароль">
<div class="ml-n3">
<button class="btn m-3 px-5" style="color:white; background-color: #4680C2;" type="submit">Войти</button>
<span class="pl-4">
<input class="form-check-input mt-4" type="checkbox" value="">
<label class="form-check-label">
Чужой компьютер
</label>
</span>
</div>
</form>
{% endblock %}