auth/tauth/templates/index.html
2024-12-23 13:22:07 -05:00

12 lines
385 B
HTML

{% extends "base.html" %}
{% block body %}
<h1>Hey there, {{ username }}!</h1>
<hr>
<p>Available services:</p>
<ul class="left inline-block no-margin">
{% if config.services.message %}<li><a href="{{ config.services.message.url.pub }}{{ login_token }}">tMessage</a></li>{% endif %}
</ul>
<hr class="sub">
<small><a href="/logout/">Log out</a></small>
{% endblock %}