Files
Notfellchen/src/templates/django_registration/activation_form.html
2025-06-17 16:51:12 +02:00

17 lines
495 B
HTML

{% extends "fellchensammlung/base_bulma.html" %}
{% load i18n %}
{% load crispy_forms_tags %}
{% block content %}
<div class="block">
{% if not user.is_authenticated %}
<form action="" method="post">
{% csrf_token %}
{{ form }}
<input type="submit" class="button is-primary" value={% translate 'Absenden' %}>
</form>
{% else %}
<p>{% translate "Du bist bereits eingeloggt." %}</p>
{% endif %}
</div>
{% endblock %}