2012-10-04 20:40:29 +02:00
|
|
|
{% extends "zephyr/base.html" %}
|
2012-09-28 22:47:05 +02:00
|
|
|
|
2012-10-04 20:40:29 +02:00
|
|
|
{% block content %}
|
2012-09-28 22:47:05 +02:00
|
|
|
|
|
|
|
<form id="register" action="/accounts/register/" method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
<input type="hidden" value="{{ key }}" name="key"/>
|
|
|
|
<input type="hidden" value="1" name="from_confirmation"/>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2012-10-03 17:50:41 +02:00
|
|
|
$("#register").submit();
|
2012-09-28 22:47:05 +02:00
|
|
|
</script>
|
|
|
|
{% endblock %}
|