mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 14:32:19 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			425 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			425 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!-- templates/signup.html -->
 | 
						|
{% extends 'base.html' %}
 | 
						|
{% load crispy_forms_filters %}
 | 
						|
{% load i18n %}
 | 
						|
{% block title %}{% trans "Sign up" %}{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
    <h2>{% trans "Sign up" %}</h2>
 | 
						|
 | 
						|
    <form method="post">
 | 
						|
        {% csrf_token %}
 | 
						|
        {{ form|crispy }}
 | 
						|
        <button class="btn btn-success" type="submit">
 | 
						|
            {% trans "Sign up" %}
 | 
						|
        </button>
 | 
						|
    </form>
 | 
						|
{% endblock %}
 |