1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-04-02 02:51:19 +00:00
2023-02-20 21:14:15 +01:00

13 lines
370 B
HTML

{% extends request.content_only|yesno:"empty.html,base.html" %}
{% load crispy_forms_filters i18n %}
{% block content %}
<form method="post">
<div id="form-content">
{% csrf_token %}
{{ form|crispy }}
</div>
<button class="btn btn-primary" type="submit">{% trans "Join" %}</button>
</form>
{% endblock content %}