zulip/templates/confirmation/confirm_mituser.html
Luke Faraone 5dad59e864 Implement MIT signups.
Here we introduce a new manage.py command, activate_mit, which takes a
number of usernames and sends out emails to the users with instructions on
how to activate their accounts.

(imported from commit f14401b55f915698e83ff27b86434f53e64685f3)
2012-10-29 16:59:37 -04:00

15 lines
353 B
HTML

{% extends "zephyr/base.html" %}
{% block content %}
<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">
$("#register").submit();
</script>
{% endblock %}