oldlogin.html 645 B

1234567891011121314151617181920212223242526272829303132333435
  1. {% extends "base.html" %}
  2. {% block header_title %}VyControl Login{% endblock %}
  3. {% block section_title %}VyControl Login{% endblock %}
  4. {% block debug %}
  5. {% endblock %}
  6. {% block content %}
  7. {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
  8. <form action="{% url 'vauth:vauth-login' %}" method="post">
  9. {% csrf_token %}
  10. <p>
  11. <label for="username">Username</label><br>
  12. <input type="text" name="username" id="username" size="20">
  13. </p>
  14. <p>
  15. <label for="password">password</label><br>
  16. <input type="password" name="password" id="password" size="32">
  17. </p>
  18. <input type="submit" value="Login">
  19. </form>
  20. {% endblock %}