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

10 lines
321 B
HTML

{% extends "base.html" %}
{% block body %}
<h1>Welcome back, {{ 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>
{% endblock %}