27 lines
566 B
HTML
27 lines
566 B
HTML
{% extends "registration/registration_base.html" %}
|
|
|
|
{% block title %}Register for an account{% endblock %}
|
|
|
|
{% block doccontent %}
|
|
<div id="registration">
|
|
|
|
<h3>Sign up for a Unglue It account:</h3>
|
|
|
|
<table>
|
|
<form method='post' action=''>{% csrf_token %}
|
|
{{ form }}
|
|
<tr><td></td><td><input type="submit" value="Send activation email" /></td>
|
|
</form>
|
|
</table>
|
|
|
|
<p>
|
|
<br>
|
|
<br>
|
|
<h3>Or use an account you already have:</h3>
|
|
<a href="/socialauth/login/google"><img src="{{ STATIC_URL }}/images/auth/google_64.png"</a>
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|