21 lines
No EOL
662 B
HTML
21 lines
No EOL
662 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Index
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="flex min-h-full flex-col justify-center px-6 py-12 lg:px-8">
|
|
<div class="sm:mx-auto sm:w-full sm:max-w-sm">
|
|
<img class="mx-auto h-12 w-auto" src="https://nixin.distrilab.eu/logo-nixin.svg" alt="NixiN">
|
|
<h2 class="mt-10 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">
|
|
Index
|
|
</h2>
|
|
hello user {{user.name}}
|
|
</div>
|
|
|
|
<p class="mt-10 text-center text-sm text-gray-500">
|
|
<a href="/logout" class="font-semibold leading-6 text-indigo-600 hover:text-indigo-500">Logout</a>
|
|
</p>
|
|
</div>
|
|
{% endblock content %} |