23 lines
		
	
	
		
			744 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			23 lines
		
	
	
		
			744 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
|   | {% extends "account/base_reauthenticate.html" %} | ||
|  | {% load allauth %} | ||
|  | {% load i18n %} | ||
|  | {% block reauthenticate_content %} | ||
|  |     {% element p %} | ||
|  |         {% blocktranslate %}Enter your password:{% endblocktranslate %} | ||
|  |     {% endelement %} | ||
|  |     {% url 'account_reauthenticate' as action_url %} | ||
|  |     {% element form form=form method="post" action=action_url %} | ||
|  |         {% slot body %} | ||
|  |             {% csrf_token %} | ||
|  |             {% element fields form=form unlabeled=True %} | ||
|  |             {% endelement %} | ||
|  |             {{ redirect_field }} | ||
|  |         {% endslot %} | ||
|  |         {% slot actions %} | ||
|  |             {% element button type="submit" %} | ||
|  |                 {% trans "Confirm" %} | ||
|  |             {% endelement %} | ||
|  |         {% endslot %} | ||
|  |     {% endelement %} | ||
|  | {% endblock %} |