15 lines
		
	
	
		
			276 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			276 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'global.html'%}
 | 
						|
{% load static %}
 | 
						|
 | 
						|
# {% block title %}Registrierung{% endblock %}
 | 
						|
 | 
						|
{% block maincontent %}
 | 
						|
 | 
						|
<h2>Registrierung</h2>
 | 
						|
<form method="post">
 | 
						|
  {% csrf_token %}
 | 
						|
  {{ form.as_p }}
 | 
						|
  <button type="submit">Sign up</button>
 | 
						|
</form>
 | 
						|
 | 
						|
{% endblock maincontent %} |