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.

form.html 839B

12345678910111213141516171819202122232425
  1. {% extends 'layout.html' %}
  2. {% load i18n %}
  3. {% block headertext %}
  4. {% trans "Dashboard access" %}
  5. {% endblock %}
  6. {% block breadcrumbs %}
  7. <ul class="breadcrumb">
  8. <li>
  9. <a href="{{ homepage_url }}">{% trans "Home" %}</a>
  10. <span class="divider">/</span>
  11. </li>
  12. <li class="active">{% trans "Dashboard access" %}</li>
  13. </ul>
  14. {% endblock %}
  15. {% block content %}
  16. <form action="." method="post">
  17. <p>{% trans "Let us know your email address and we'll create a dashboard user for you and email you the details." %}</p>
  18. {% csrf_token %}
  19. {% include 'partials/form_fields.html' with form=form %}
  20. <button type="submit" class="btn btn-large btn-primary" data-loading-text="{% trans 'Sending...' %}">{% trans "Send email" %}</button>
  21. </form>
  22. {% endblock %}