24 lines
		
	
	
		
			420 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			420 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends "registration/_registration_base.html" %}
 | 
						|
 | 
						|
{% block title %}
 | 
						|
  Register for an account
 | 
						|
{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<h2>
 | 
						|
  Register
 | 
						|
</h2>
 | 
						|
 | 
						|
<form method='post' action=''>{% csrf_token %}
 | 
						|
  <table class="table">
 | 
						|
    {{ form }}
 | 
						|
    <tr>
 | 
						|
      <td></td>
 | 
						|
      <td>
 | 
						|
        <input class="btn pull-right" type="submit" value="Send activation email" />
 | 
						|
      </td>
 | 
						|
    </tr>
 | 
						|
  </table>
 | 
						|
</form>
 | 
						|
{% endblock %}
 |