registration.html 305 B

1234567891011121314
  1. {% extends 'base.html' %}
  2. {% block content %}
  3. <h1>Регистрация</h1>
  4. <form method="post">
  5. {% csrf_token %}
  6. <input type="hidden" name="next" value="{{ next }}" />
  7. {{ form.as_p }}
  8. <p ><button type="submit">Зарегистрироваться</button></p>
  9. </form>
  10. {% endblock %}