summaryrefslogtreecommitdiffstats
path: root/templates/auth/signup.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/auth/signup.html')
-rw-r--r--templates/auth/signup.html13
1 files changed, 12 insertions, 1 deletions
diff --git a/templates/auth/signup.html b/templates/auth/signup.html
index b1aaa50..7924c0a 100644
--- a/templates/auth/signup.html
+++ b/templates/auth/signup.html
@@ -7,13 +7,24 @@
{% csrf_token %}
<fieldset>
<legend>Create An Account</legend>
- {{ config.signup_text|safe|linebreaks }}
+ {% if config.signup_text %}{{ config.signup_text|safe|linebreaks }}{% endif %}
+ {% if config.signup_allowed %}
{% for field in form %}
{% include "forms/_field.html" %}
{% endfor %}
+ {% else %}
+ {% if not config.signup_text %}
+ <p>Not accepting new users at this time</p>
+ {% endif %}
+ {% endif %}
+
</fieldset>
+
+ {% if config.signup_allowed %}
<div class="buttons">
<button>Create</button>
</div>
+ {% endif %}
+
</form>
{% endblock %}