- drop jQuery and fontawesome dependencies - add bootstrap5 and bootstrap-icons - update fonts mfizz - update base templates and the first set of other templates - replace blocktrans and trans with blocktranslate and translate to prepare for Django 4 - move hostingpakcage templates to hostingpackages/templates - update translations
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "account/base.html" %}
 | |
| {% load i18n crispy_forms_tags %}
 | |
| 
 | |
| {% block title %}{{ block.super }} - {% translate "Set Password" %}{% endblock title %}
 | |
| {% block page_title %}{% translate "Set Password" %}{% endblock page_title %}
 | |
| 
 | |
| {% block content %}
 | |
| <form method="POST" action="{% url 'account_set_password' %}" class="password_set">
 | |
|   {% csrf_token %}
 | |
|   {{ form | crispy }}
 | |
|   <input class="btn btn-primary" type="submit" name="action" value="{% translate "Set Password" %}"/>
 | |
| </form>
 | |
| {% endblock %}
 |