Skip to content
Snippets Groups Projects
Verified Commit 826ba05c authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Remove legacy registration templates

parent 1ec1a200
No related branches found
No related tags found
No related merge requests found
Pipeline #1915 failed
{% include 'partials/header.html' %}
<main>
<p class="flow-text">Du bist nun abgemeldet.</p>
<a href="{% url 'login' %}">Wieder anmelden?</a>
</main>
{% include 'partials/footer.html' %}
{# -*- engine:django -*- #}
{% extends "core/base.html" %}
{% load material_form i18n %}
{% block content %}
{% if next %}
{% if user.is_authenticated %}
<p>
Your account doesn't have access to this page. To proceed,
please login with an account that has access.
</p>
{% else %}
<p>Please login to see this page.</p>
{% endif %}
{% endif %}
<form method="post" action="{% url 'login' %}">
{% csrf_token %}
{% form form=form %}{% endform %}
<button type="submit" class="btn waves-effect waves-light green">
{% blocktrans %}Login{% endblocktrans %}
</button>
</form>
{% endblock %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment