{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Login" %}{% endblock %} {% block brcrmb_container %}{% endblock %} {% block content %}

{% trans "Welcome" %}

{% blocktrans %}

Welcome to GRNET's ViMa service.

If you are new to the service, take some time to read the service description here and then register for a new account.

If you already have an account, you can log in using the form on the right.

For troubleshooting info and remarks do not hesitate to contact GRNET's Helpdesk.

{% endblocktrans %}

{% trans "Login" %}

{% if form.errors %}

{% trans "Your username and password didn't match. Please try again." %}

{% endif %}
{% csrf_token %}
{{ form.username.label_tag }} {{ form.username }}
{{ form.password.label_tag }} {{ form.password }}
{% endblock %}