blob: 0c1fd0fb3b214eb48a3e1c4c00c78ca513838991 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{% extends 'blog/partials/base.html' %} {% block content %}
{% comment %} <h1 style="margin-top: 30px">Register for an account</h1>
<p>Register for an account to post your thoughts and get feedback from other users.</p>
<hr /> {% endcomment %}
{% comment %} <form method="post">
<input type="hidden" name="csrfmiddlewaretoken" value="{{ csrf_token }}" style="display: none" />
<table id="register_form">{{ form.as_table }}</table>
<p>
<img width="160" height="60" src="{% url 'ignis:captcha_image' captcha %}" alt="Captcha" id="captcha" />
</p>
<input type="hidden" name="expected_captcha" value="{{ captcha }}" />
<input type="submit" value="Register" class="button button-special" />
</form> {% endcomment %}
<h3 style="margin-top: 30px; font-size: 18px;">New User Registration has been currently disabled as the site is undergoing heavy changes. Please check back later. Pre-existing users can still log in.</h3>
<p>
By registering on this site, you agree to everything that's
<a href="{% url 'blog:policy' %}">written here</a>.
</p>
<p>
<b>Note</b>: Upon registering, you will be sent an email with a link to activate your account. If you don't activate your account within 72 hours, your username will be released and you will have to register again.
</p>
{% for message in messages %}
{% if 'accountCreated' in message.tags %}
<p>
<small class="success">{{ message.message }}</small>
</p>
{% endif %}
{% endfor %}
{% endblock %}
|