auth/tauth/templates/noauth/index.html
2024-12-23 22:38:56 -05:00

14 lines
404 B
HTML

{% extends "base.html" %}
{% block body %}
<h1>tAuth</h1>
<div>The only account you'll ever need</div>
<div><small>(assuming you don't need much)</small></div>
<p>
<a href="/login/">Log in</a>
{% if config.new_users %} - <a href="/signup/">Sign up</a>{% endif %}
</p>
{% if not config.new_users %}
<div>This instance isn't accepting new users.</div>
{% endif %}
{% endblock %}