This commit is contained in:
Egor Matveev
2021-07-11 10:28:12 +03:00
commit 9c0123cbf2
102 changed files with 6285 additions and 0 deletions

36
templates/restore.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
{% load static %}
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>
Восстановление пароля
</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href={% static "css/styles.css" %}>
<script type="text/javascript" src={% static "js/scripts.js" %}></script>
</head>
<body>
<center>
<h1>
<font color="black"><a href="{% url 'enter' %}">Sprint</a></font>
</h1>
<form method="POST">
{% csrf_token %}
<table>
<tr>
<td>
<font color="black">Почта</font>
</td>
<td>
<input type="email" name="email" class="input_simple">
</td>
</tr>
</table>
<input type="submit" value="Восстановить" class="btn btn-dark" style="margin-top: 20px;">
</form>
Если данный электронный адрес есть в базе, то на него будет отправлена ссылка для восстановления пароля.
</center>
</body>
</html>