Coverage for templates / account / signup.html: 0%

8 statements  

« prev     ^ index     » next       coverage.py v7.13.2, created at 2026-03-10 14:10 +0000

1  

2{% extends '_base.html' %} 

3{% load crispy_forms_tags %} 

4{% load i18n %} 

5  

6  

7{% block page_title %}{% trans "Sign up" %}{% endblock %} 

8{% block page_h2 %}{% trans "Sign up" %}{% endblock %} 

9  

10{% block page_body %} 

11<form method="post"> 

12 {% csrf_token %} 

13 {{ form|crispy }} 

14 <button class="btn btn-success" type="submit">{% trans "Sign up" %}</button> 

15</form> 

16{% endblock %}