auth/tauth/templates/index.html

11 lines
321 B
HTML
Raw Normal View History

2024-12-20 23:44:31 -05:00
{% extends "base.html" %}
{% block body %}
<h1>Welcome back, {{ username }}!</h1>
2024-12-22 00:07:17 -05:00
<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>
2024-12-20 23:44:31 -05:00
{% endblock %}