You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.2 KiB

  1. {% extends "base_auth.html" %}
  2. {% load utils_templating %}
  3. {% block content_auth %}
  4. {% if allow_signup %}
  5. <div class="card-content">
  6. <!-- <div style="text-align:center;font-size:1.5em">
  7. <h2>Sign up</h2>
  8. </div> -->
  9. <form method="post">
  10. {% csrf_token %}
  11. {% for field in form %}
  12. <div class="field">
  13. <label class="label">{{ field.label_tag }}</label>
  14. <div class="control">
  15. {{ field|addcss:'input' }}
  16. {% if field.help_text %}
  17. <small style="display: none">{{ field.help_text }}</small>
  18. {% endif %}
  19. {% for error in field.errors %}
  20. <p style="color: red">{{ error }}</p>
  21. {% endfor %}
  22. </div>
  23. </div>
  24. {% endfor %}
  25. <div style="text-align:center">
  26. <button type="submit" class="button is-block is-primary is-fullwidth is-middle">Sign up</button>
  27. </div>
  28. <div class="field">
  29. <span class="checkbox" style="margin-top:30px">
  30. Already registered ? <a href="{% url 'login' %}"> login </a>
  31. </span>
  32. </div>
  33. </form>
  34. </div>
  35. {% else %}
  36. <div class="card-content">
  37. <div>
  38. You can't signup yourself, please contact the admin in order to get your username and your password!
  39. </div>
  40. </div>
  41. {% endif %}
  42. {% endblock %}