{% extends "base.html" %} {% block content %}

Video portal of the Free Software Lab at the Department of Computer Science H-BRS

This service is for members of the University of Applied Sciences Bonn-Rhein-Sieg.
Students and lecturers of the Department of Computer Science can log in with their usual email credentials,
other students and lecturers need to register an account here.

Login

{% if form.non_field_errors %}

{% for error in form.non_field_errors %}{{ error|linebreaksbr }}
{% endfor %}

{% endif %}
{% csrf_token %} {% for field in form %}

{% if field.errors %}

{% for error in field.errors %}{{ error|linebreaksbr }}
{% endfor %}
{% endif %} {{ field }}

{% endfor %}

{% endblock %}