diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-20 21:57:11 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-20 21:57:11 +0000 |
commit | ba5987b67417ef6af563dbe7c8405f4c6182eaee (patch) | |
tree | 7fbecca514f01e2e4cd7d04e8629ba95159d198e /templates/base.html | |
parent | d79ffd8354413f4f295e13ecdea31d90d7722af5 (diff) | |
download | troggle-ba5987b67417ef6af563dbe7c8405f4c6182eaee.tar.gz troggle-ba5987b67417ef6af563dbe7c8405f4c6182eaee.tar.bz2 troggle-ba5987b67417ef6af563dbe7c8405f4c6182eaee.zip |
form now working with basic validation
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 62d1685..404a5ef 100644 --- a/templates/base.html +++ b/templates/base.html @@ -28,7 +28,7 @@ <a id="handbook" href="/handbook/computing/onlinesystems.html">Handbook</a> | {% if user.username %}User:{{ user.username }} {% if user.person %}(<a href="{{ user.person.get_absolute_url }}">{{ user.person }}</a>){% endif %} - | <a <a href='/accounts/logout/'>Log out</a> {% else %} <a href='/accounts/login/'>Log in</a> {% endif %} + | <a href='/accounts/logout/'>Log out</a> {% else %} <a href='/accounts/register/'>Register</a> <a href='/accounts/login/'>Log in</a> {% endif %} {% endblock%} </div> |