2011-09-04 04:21:51 +00:00
|
|
|
{% extends "registration/registration_base.html" %}
|
|
|
|
|
|
|
|
{% block title %}Register for an account{% endblock %}
|
|
|
|
|
2011-11-19 00:50:47 +00:00
|
|
|
{% block doccontent %}
|
2011-09-04 04:21:51 +00:00
|
|
|
<div id="registration">
|
2011-09-06 03:50:38 +00:00
|
|
|
|
|
|
|
<h3>Sign up for a Unglue It account:</h3>
|
|
|
|
|
2011-09-04 04:21:51 +00:00
|
|
|
<table>
|
|
|
|
<form method='post' action=''>{% csrf_token %}
|
|
|
|
{{ form }}
|
|
|
|
<tr><td></td><td><input type="submit" value="Send activation email" /></td>
|
|
|
|
</form>
|
|
|
|
</table>
|
2011-09-06 03:50:38 +00:00
|
|
|
|
|
|
|
<p>
|
|
|
|
<br>
|
|
|
|
<br>
|
2011-09-06 04:02:15 +00:00
|
|
|
<h3>Or use an account you already have:</h3>
|
2011-09-06 03:50:38 +00:00
|
|
|
<a href="/socialauth/login/google"><img src="{{ STATIC_URL }}/images/auth/google_64.png"</a>
|
|
|
|
</p>
|
|
|
|
|
2011-09-04 04:21:51 +00:00
|
|
|
</div>
|
2011-09-06 03:50:38 +00:00
|
|
|
|
2011-09-04 04:21:51 +00:00
|
|
|
{% endblock %}
|