mirror of
				https://gitlab.crans.org/bde/nk20
				synced 2025-11-03 08:58:47 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			406 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			406 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!-- templates/signup.html -->
 | 
						|
{% extends 'base.html' %}
 | 
						|
{% load crispy_forms_tags %}
 | 
						|
{% load i18n %}
 | 
						|
{% block title %}Sign Up{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
  <h2>Sign up</h2>
 | 
						|
  <form method="post">
 | 
						|
      {% csrf_token %}
 | 
						|
      {{ form|crispy }}
 | 
						|
      {{ profile_form|crispy }}
 | 
						|
      <button class="btn btn-link" type="submit">
 | 
						|
          {% trans "Sign Up" %}
 | 
						|
      </button>
 | 
						|
  </form>
 | 
						|
{% endblock %}
 |