{% extends 'homepage/base.html' %} {% load static %} {% load i18n %} {% block head %}{% endblock %} {% block title %}{% trans "Registration" %}{% endblock %} {% block header %}{% trans "Family Tree" %}{% endblock %} {% block status %} {% if user.is_authenticated %}

{% trans "Hello" %} {% firstof user.first_name user.username %}!
{% trans "Logout" %}

{% else %}

{% trans "You are not logged in" %}
{% trans "Login" %}

{% endif %} {% endblock %} {% block content %}

{% trans "Registration" %}

{% trans "You need to register to get access to this page. Your account will then proceed to be validated by an admin." %}


{% csrf_token %} {{ form.as_p }}

{% trans "Already have an account?" %} {% trans "Sign in" %}.

{% endblock %}