This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
biomon/src/biomon/templates/biomon/login.html

17 lines
540 B
HTML

{% extends "biomon/base.html" %}
{% load i18n %}
{% block bodyargs %}id="login"{% endblock %}
{% block content %}
<div id="loginform">
<form action="{% url 'login' %}{% if request.GET %}?{{ request.GET.urlencode }}{% endif %}" method="post" id="login">{% csrf_token %}
{% for field in form %}
{{ field.errors }}
<div class="loginfield">
{{ field }}
</div>
{% endfor %}
<input type="submit" value="{% trans 'Connection' %}" />
</form>
</div>
{% endblock %}