15 lines
390 B
HTML
15 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 %}
|