29 lines
1.0 KiB
HTML
29 lines
1.0 KiB
HTML
<!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> |