25 lines
937 B
HTML
25 lines
937 B
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="w-full p-3 rounded-full bg-blue-600 text-white font-black hover:scale-105 transition duration-200 cursor-pointer" type="submit">Abmelden</button>
|
|
</form>
|
|
</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 %} |