summaryrefslogtreecommitdiff
path: root/horizon/horizon/templates/horizon/auth/_switch.html
blob: 7be5450a96d0fb041e36801da55f59aeb9376aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{% load i18n %}
<form action="" method="post">
  {% csrf_token %}
  <fieldset>
  {% for hidden in form.hidden_fields %}
    {{ hidden }}
  {% endfor %}
  {% for field in form.visible_fields %}
    {{ field.label_tag }}
    {{ field.errors }}
    {{ field }}
    {% endfor %}
  {% block submit %}
    <input type="submit" value="{% trans "Login" %}" />
  {% endblock %}
  </fieldset>
</form>