auth/tauth/templates/noauth/index.html

15 lines
404 B
HTML
Raw Normal View History

2024-12-20 08:59:39 -05:00
{% 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>
2024-12-23 22:38:56 -05:00
{% if config.new_users %} - <a href="/signup/">Sign up</a>{% endif %}
2024-12-20 08:59:39 -05:00
</p>
2024-12-23 22:38:56 -05:00
{% if not config.new_users %}
2024-12-20 08:59:39 -05:00
<div>This instance isn't accepting new users.</div>
{% endif %}
{% endblock %}