auth/tauth/templates/index.html

14 lines
510 B
HTML
Raw Normal View History

2024-12-20 23:44:31 -05:00
{% extends "base.html" %}
{% block body %}
2024-12-23 13:22:07 -05:00
<h1>Hey there, {{ 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 %}
2024-12-31 19:58:57 -05:00
{% if config.services.blog %}<li><a href="{{ config.services.blog.url.pub }}{{ login_token }}">tBlog</a></li>{% endif %}
2024-12-22 00:07:17 -05:00
</ul>
2024-12-23 13:22:07 -05:00
<hr class="sub">
<small><a href="/logout/">Log out</a></small>
2024-12-20 23:44:31 -05:00
{% endblock %}