15 lines
		
	
	
	
		
			507 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
	
		
			507 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
|   | {% extends "utility_page.html" %} | ||
|  | 
 | ||
|  | {% load i18n %} | ||
|  | 
 | ||
|  | {% block head_title %}{% trans "Log out" %}{% endblock %} | ||
|  | {% block page_title %}{% trans "Log out" %}{% endblock %} | ||
|  | 
 | ||
|  | {% block utility_body %} | ||
|  |             <form method="POST" action="{% url "account_logout" %}"> | ||
|  |                     {% csrf_token %} | ||
|  |                     <p>{% trans "Are you sure you want to log out?" %}</p> | ||
|  |                     <button type="submit" class="btn btn-primary">{% trans "Log out" %}</button> | ||
|  |             </form> | ||
|  | {% endblock %} |