29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
{% extends 'base.html'%}
|
|
{% block title %}Home{% endblock %}
|
|
{% block content %}
|
|
|
|
|
|
<div class="flex justify-center items-center mt-12 ">
|
|
<div class="input-group p-4 m-2 border-blue-600 border-2 rounded-xl shadow-md">
|
|
<div class="grid place-content-center h-120">
|
|
|
|
<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">
|
|
{% csrf_token %}
|
|
<button class="bg-blue-600 text-white p-3 rounded-full font-black" type="submit">Abmelden</button>
|
|
</form>
|
|
<button class="text-center text-sm w-full mt-4 font-light text-blue-600"><a href="{% url 'accounts:password_change' %}">Passwort ändern</a></button>
|
|
<button class="text-center text-sm w-full mt-4 font-light text-red-600"><a href="{% url 'accounts:delete_account' %}">Account löschen</a></button>
|
|
</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 %} |