{% extends "base.html" %} {% block pagestyle %} ul.errorlist { border-left: 6px solid red; background-color: #ffd6cc; text-align: left; } {% endblock %} {% block content %}

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

If you are a student or lecturer of the Department of Computer Science you can log in with your usual email credentials, otherwise please go ahead and create your own user account.

Registration

{% if created %}

User has been created, check your email account for activation link.

{% else %} {% if form.non_field_errors %}

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

{% endif %}
{% csrf_token %}
{% for field in form %} {% if field.name == "email" %}
{% elif field.name == "email_domain" %}
{% else %}
{% endif %} {{ field }} {% if field.errors %}
{% for error in field.errors %}{{ error|linebreaksbr }}
{% endfor %}
{% endif %}
{% if field.name == "username" %}
{% endif %} {% endfor %}


{% endif %}
{% endblock %}