mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 07:42:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			407 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			407 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "base.html" %}
 | 
						|
 | 
						|
{% load i18n crispy_forms_filters %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <form method="post">
 | 
						|
        {% csrf_token %}
 | 
						|
        {{ form|crispy }}
 | 
						|
        <input type="submit" class="btn btn-primary btn-block" value="{% trans "Submit" %}">
 | 
						|
    </form>
 | 
						|
 | 
						|
    <hr>
 | 
						|
 | 
						|
    <a class="btn btn-secondary btn-block" href="{% url "password_change" %}">{% trans "Update my password" %}</a>
 | 
						|
{% endblock %}
 |