This commit is contained in:
ben8
2025-03-08 13:03:18 +01:00
parent 7f4b2f2e87
commit 53c2a13923
2 changed files with 22 additions and 1003 deletions

View File

@@ -1,11 +1,25 @@
{% extends 'accounts/base.html'%} {% extends 'accounts/base.html'%}
{% block title %}Home{% endblock %} {% block title %}Home{% endblock %}
{% block content %} {% block content %}
<div class="max-w-screen-lg mx-auto mt-12">
<div class="input-group">
<div class="grid place-content-center h-120"> <div class="grid place-content-center h-120">
<h1 class="text-center m-4 text-6xl">Moin moin!</h1>
<h1 class="text-center m-4 text-3xl lg:text-6xl">Willkommen, <b>{{ request.user.username }}</b>!</h1>
<form action="{% url 'accounts:logout' %}" method="post"> <form action="{% url 'accounts:logout' %}" method="post">
{% csrf_token %} {% csrf_token %}
<button class="bg-red-600 text-white p-3 rounded-full font-black" type="submit">Abmelden</button> <button class="bg-red-600 text-white p-3 rounded-full font-black" type="submit">Abmelden</button>
</form> </form>
</div> </div>
<div class="flex justify-end">
<span class="text-[clamp(0.6rem,5vw,1rem)] font-black overflow-x-auto mt-1 ml-0.75 text-blue-600 p-0.75 bg-white">qivip
</span>
</div>
</div>
</div>
{% endblock %} {% endblock %}

File diff suppressed because one or more lines are too long