2019-08-11 14:22:52 +00:00
|
|
|
{% extends 'base.html' %}
|
2020-08-21 15:52:48 +00:00
|
|
|
{% comment %}
|
|
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
{% endcomment %}
|
|
|
|
{% load i18n crispy_forms_tags %}
|
2020-03-11 11:05:29 +00:00
|
|
|
{% block title %}{% trans "Sign up" %}{% endblock %}
|
2020-04-16 21:31:36 +00:00
|
|
|
|
2020-08-10 09:40:51 +00:00
|
|
|
{% block content %}
|
2020-08-21 15:52:48 +00:00
|
|
|
<div class="card bg-light">
|
|
|
|
<h3 class="card-header text-center">
|
|
|
|
{% trans "Sign up" %}
|
|
|
|
</h3>
|
|
|
|
<div class="card-body">
|
|
|
|
<div class="alert alert-warning">
|
|
|
|
{% blocktrans trimmed %}
|
|
|
|
If you already signed up, your registration is taken into account. The BDE must validate
|
|
|
|
your account before your can log in. You have to go to the Kfet and pay the registration fee. You must also
|
|
|
|
validate your email address by following the link you received.
|
|
|
|
{% endblocktrans %}
|
|
|
|
</div>
|
2020-04-16 21:31:36 +00:00
|
|
|
|
2020-08-21 15:52:48 +00:00
|
|
|
<form method="post">
|
|
|
|
{% csrf_token %}
|
|
|
|
{{ form|crispy }}
|
|
|
|
{{ profile_form|crispy }}
|
2020-10-07 08:33:57 +00:00
|
|
|
{{ soge_form|crispy }}
|
2020-08-21 15:52:48 +00:00
|
|
|
<button class="btn btn-success" type="submit">
|
|
|
|
{% trans "Sign up" %}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|