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

View File

@@ -0,0 +1,29 @@
<!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>
Sprint
</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="/enter">Sprint</a></font>
</h1>
{{ error }}
<form method="POST">
{% csrf_token %}
<table>
{{ form }}
</table>
<input type="submit" value="Установить пароль" class="btn btn-dark" style="margin-top: 20px;">
</form>
</center>
</body>
</html>