signup.html 289 B

12345678910111213
  1. {% extends '_base.html' %}
  2. {% load crispy_forms_tags %}
  3. {% block title %}Sign up{% endblock %}
  4. {% block content %}
  5. <h2>Sign up</h2>
  6. <form method="post">
  7. {% csrf_token %}
  8. {{ form|crispy }}
  9. <button class="btn btn-success" type="submit">Sign up</button>
  10. </form>
  11. {% endblock content %}