11 lines
399 B
HTML
11 lines
399 B
HTML
{% extends 'accounts/base.html'%}
|
|
{% block title %}Home{% endblock %}
|
|
{% block content %}
|
|
<div class="grid place-content-center h-120">
|
|
<h1 class="text-center m-4 text-6xl">Moin moin!</h1>
|
|
<form action="{% url 'accounts:logout' %}" method="post">
|
|
{% csrf_token %}
|
|
<button class="bg-red-600 text-white p-3 rounded-full font-black" type="submit">Abmelden</button>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |