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