diff options
Diffstat (limited to 'templates/auth')
-rw-r--r-- | templates/auth/signup.html | 13 |
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 %} |