Changes by vlad
This commit is contained in:
20
templates/registration/register.html
Normal file
20
templates/registration/register.html
Normal file
@@ -0,0 +1,20 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block title %} Аккаунт | регистрация {% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1 class=deprecated-page-header"> Ваш аккаунт </h1>
|
||||
<h3>Регистрация</h3>
|
||||
<form action="" method="POST">
|
||||
{% csrf_token %}
|
||||
<table>
|
||||
<tbody>
|
||||
{{ form.as_table }}
|
||||
</tbody>
|
||||
</table>
|
||||
<button type="submit">Регистрация</button>
|
||||
</form>
|
||||
|
||||
<div>
|
||||
Уже зарегистрированы? <a href="{% url 'login' %}">Вход</a>
|
||||
</div>
|
||||
{% endblock %}
|
Reference in New Issue
Block a user