--- /dev/null
+{% extends "telemeta/registration/registration_base.html" %}
+{% load i18n %}
+{% block title %}{% if account %}{% trans "Activation complete" %}{% else %}{% trans "Activation problem" %}{% endif %}{% endblock %}
+{% block content %}
+{% url 'auth_login' as auth_login_url %}
+{% if account %}
+{% blocktrans %}
+Thanks {{ account }}, activation complete!
+You may now <a href='{{ auth_login_url }}'>login</a> using the username and password you set at registration.
+{% endblocktrans %}
+{% else %}
+{% blocktrans %}Oops – it seems that your activation key is invalid. Please check the url again.{% endblocktrans %}
+{% endif %}
+{% endblock %}
--- /dev/null
+{% extends "telemeta/registration/registration_base.html" %}
+{% load i18n %}
+{% block title %}{% trans "Activation complete" %}{% endblock %}
+{% block content %}
+{% url 'auth_login' as auth_login_url %}
+{% blocktrans %}
+Thanks, activation complete! You may now <a href='{{ auth_login_url }}'>login</a> using the username and password you set at registration.
+{% endblocktrans %}
+{% endblock %}
+
+
--- /dev/null
+{% load i18n %}
+{% comment %}
+This template is used for the html alternative of the activation email
+if you use a django-registration backend that looks for it. e.g.
+https://github.com/huseyinyilmaz/django-registration-extended-backend
+{% endcomment %}
+{% url 'registration_activate' activation_key as activation_key_url %}
+{% blocktrans with sitename=site.name sitedomain=site.domain%}<body>
+<h3>Account registration for {{ sitename }}</h3>
+<p>
+You (or someone pretending to be you) have asked to register an account at
+<b>{{ sitename }}</b>.<br/>
+If this wasn't you, please ignore this email and your address will be removed
+from our records.
+</p>
+<p>
+To activate this account, please click the following link within the next
+<b>{{ expiration_days }}</b> days:<br/>
+<a href="http://{{ sitedomain }}{{ activation_key_url }}">http://{{ sitedomain }}{{ activation_key_url }}</a>
+</p>
+<p>
+Sincerely,<br/>
+{{ sitename }} Management
+</p>
+</body>
+{% endblocktrans %}
\ No newline at end of file
--- /dev/null
+{% load i18n %}
+{% url 'registration_activate' activation_key as activation_key_url%}
+{% blocktrans with sitename=site.name siteurl=site.domain %}
+You (or someone pretending to be you) have asked to register an account at
+{{ sitename }}. If this wasn't you, please ignore this email
+and your address will be removed from our records.
+
+To activate this account, please click the following link within the next
+{{ expiration_days }} days:
+
+http://{{ siteurl }}{{ activation_key_url }}
+
+Sincerely,
+{{ sitename }} Management
+{% endblocktrans %}
\ No newline at end of file
--- /dev/null
+{% load i18n %}{% blocktrans with sitename=site.name %}Account registration for {{ sitename }}{% endblocktrans %}
--- /dev/null
+{% extends "telemeta/registration/registration_base.html" %}
+{% load i18n %}
+{% block title %}{% trans "Login" %}{% endblock %}
+{% block content %}
+{% url 'auth_password_reset' as auth_pwd_reset_url %}
+{% url 'registration_register' as register_url%}
+
+{% if form.errors %}
+<p>{% blocktrans %}Your username and password didn't match. Please try again.{% endblocktrans %}</p>
+{% endif %}
+
+<form method="post" action="{% url 'auth_login' %}">{% csrf_token %}
+<table>
+<tr>
+ <td>{% trans form.username.label_tag %}</td>
+ <td>{{ form.username }}</td>
+</tr>
+<tr>
+ <td>{% trans form.password.label_tag %}</td>
+ <td>{{ form.password }}</td>
+</tr>
+</table>
+<p>{% blocktrans %}<a href="{{ auth_pwd_reset_url }}">Forgot</a> your password?
+ <a href="{{ register_url }}">Need an account</a>?{% endblocktrans %}</p>
+
+<input type="submit" value="{% trans "login" %}" />
+<input type="hidden" name="next" value="{{ next }}" />
+</form>
+
+{% endblock %}
--- /dev/null
+{% extends "telemeta/registration/registration_base.html" %}
+{% load i18n %}
+{% block title %}{% trans "Logged out" %}{% endblock %}
+{% block content %}
+{% trans "Successfully logged out!" %}
+{% endblock %}
--- /dev/null
+{% extends "telemeta/base.html" %}
+{% load i18n %}
--- /dev/null
+{% extends "telemeta/registration/registration_base.html" %}
+{% load i18n %}
+{% load telemeta_utils %}
+{% load teleforma_tags %}
+
+{% block title %}<center>{% trans "Registration" %} - {% description %}</center>{% endblock %}
+
+{% block content %}
+<center>
+<div class="register">
+Vous venez de réaliser avec succès votre préinscription à la formation estivale du Pré-Barreau.
+<br><br>
+
+Afin de valider votre inscription, nous vous invitons à imprimer le formulaire ci-dessous et à nous le retourner sous huitaine, accompagné du règlement (+ photocopie émetteur) et des photos d’identité à l’adresse suivante :
+<br><br>
+
+LE PRE-BARREAU<br>
+Service inscription<br>
+3, rue de Nesle<br>
+75006 Paris
+<br><br><br>
+
+<a href="{{ register_doc_print.file.url }}" class="component_icon button" id="action_green" target="_blank"><img src="{{STATIC_URL}}telemeta/images/download.png" alt="" style="vertical-align:middle" /> {% trans "Download" %}</a>
+
+</center>
+</div>
+
+{% endblock %}
+
+
--- /dev/null
+{% extends "telemeta/registration/registration_base.html" %}
+{% load i18n %}
+{% load telemeta_utils %}
+{% load teleforma_tags %}
+
+{% block title %}<center>{% trans "Registration" %} - {% description %}</center>{% endblock %}
+
+{% block content %}
+<center>
+ <form class="register" id="_registerForm" method="post" action="" enctype="multipart/form-data" data-ajax="false">{% csrf_token %}
+ <table>
+ {{ form }}
+ {% for formset in inlines %}
+ {{ formset.management_form }}
+ {% for form in formset %}
+ {{form }}
+ {% endfor %}
+ {% endfor %}
+ </table>
+ <br><br>
+ <a href="#" class="component_icon button" id="action_green" onclick="$('#_registerForm').submit();"><img src="{{STATIC_URL}}telemeta/images/next.png" alt="" style="vertical-align:middle" /> {% trans "Submit" %}</a>
+ </form>
+</center>
+{% endblock %}
+
+