mirror of
https://github.com/zulip/zulip.git
synced 2026-07-12 21:04:41 +08:00
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)
15 lines
353 B
HTML
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 %}
|