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

10 statements  

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

1{% extends '_base.html' %} 

2{% load crispy_forms_tags %} 

3{% load i18n %} 

4  

5{% block page_title %}{% trans "Set Password" %}{% endblock %} 

6{% block page_h2 %}{% trans "Set Password" %}{% endblock %} 

7  

8{% block page_body %} 

9<form method="POST" action="" class="password_set"> 

10 {% csrf_token %} 

11 {{ form | crispy }} 

12 <div class="form-actions"> 

13 <button class="btn btn-primary" type="submit" name="action" value="Set Password">{% trans "Set Password" %}</button> 

14 </div> 

15</form> 

16{% endblock %}