auth/tauth/templates/noauth/index.html
2024-12-20 08:59:39 -05:00

14 lines
390 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 new_users %} - <a href="/signup/">Sign up</a>{% endif %}
</p>
{% if not new_users %}
<div>This instance isn't accepting new users.</div>
{% endif %}
{% endblock %}