| 1234567891011121314151617181920212223242526272829303132333435 |
- {% extends "base.html" %}
- {% block header_title %}VyControl Login{% endblock %}
- {% block section_title %}VyControl Login{% endblock %}
- {% block debug %}
- {% endblock %}
- {% block content %}
- {% if error_message %}<p><strong>{{ error_message }}</strong></p>{% endif %}
- <form action="{% url 'vauth:vauth-login' %}" method="post">
- {% csrf_token %}
- <p>
- <label for="username">Username</label><br>
- <input type="text" name="username" id="username" size="20">
- </p>
- <p>
- <label for="password">password</label><br>
- <input type="password" name="password" id="password" size="32">
- </p>
- <input type="submit" value="Login">
- </form>
- {% endblock %}
|