regluit/frontend/templates/registration/registration_form.html

27 lines
563 B
HTML
Raw Normal View History

{% extends "registration/registration_base.html" %}
{% block title %}Register for an account{% endblock %}
{% block content %}
<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>
2011-09-06 04:02:15 +00:00
<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 %}