15 lines
843 B
HTML
15 lines
843 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="grid place-content-center md:h-screen h-150 w-full -z-50 top-0 p-4">
|
|
<div class="text-center">
|
|
<h2 class="font-bold md:text-8xl text-6xl md:mb-8 text-blue-600">qivip</h2>
|
|
<h3 class="italic font-extralight sm:text-2xl text-md">Interaktives Lernen neu definiert.</h3>
|
|
</div>
|
|
<div class="grid sm:grid-cols-3 place-items-stretch text-center mt-8 gap-4 p-4 border-3 bg-blue-100 border-blue-100 rounded-md">
|
|
<a class="qp-a-button bg-green-500 text-white" href="{% url 'play:join_game' %}">Teilnehmen</a>
|
|
<a class="qp-a-button bg-indigo-500 text-white" href="{% url 'library:overview_quiz' %}">Moderieren</a>
|
|
<a class="qp-a-button bg-purple-500 text-white" href="{% url 'library:new_quiz' %}">Erstellen</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |