30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}Вход{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="center">
|
|
<center>
|
|
<div>
|
|
<h1>
|
|
<i class="fa fa-random"></i> Sprint
|
|
</h1>
|
|
</div>
|
|
<div>
|
|
<p style="color: red;">{{ error_message }}</p>
|
|
<form method="POST">
|
|
{% csrf_token %}
|
|
<input type="text" class="form" name="email" placeholder="email or username"><br>
|
|
<input type="password" class="form" name="password" placeholder="password"><br>
|
|
<input type="submit" value="Вход" class="sub btn btn-dark form">
|
|
</form>
|
|
</div>
|
|
<div>
|
|
<button onclick="window.location.href='/restore'" class="sub btn btn-dark form">Восстановить пароль</button>
|
|
</div>
|
|
<div>
|
|
<button onclick="window.location.href='/register'" class="sub btn btn-dark form">Регистрация</button>
|
|
</div>
|
|
</center>
|
|
</div>
|
|
{% endblock %} |