diff options
author | Andrew Godwin | 2022-11-17 19:21:00 -0700 |
---|---|---|
committer | Andrew Godwin | 2022-11-17 17:33:09 -0700 |
commit | 291d7e404e12e1d017403242f8ed199046f0904c (patch) | |
tree | 89a60ff7f321537b6a58835aaa726f7e22ed09ba /templates/auth | |
parent | 0851fbd1ec09b142608667bf90ee806e59cafb28 (diff) | |
download | takahe-291d7e404e12e1d017403242f8ed199046f0904c.tar.gz takahe-291d7e404e12e1d017403242f8ed199046f0904c.tar.bz2 takahe-291d7e404e12e1d017403242f8ed199046f0904c.zip |
Logged out experience, config, and profiles
Diffstat (limited to 'templates/auth')
-rw-r--r-- | templates/auth/login.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/auth/login.html b/templates/auth/login.html index c892c78..b3b0a05 100644 --- a/templates/auth/login.html +++ b/templates/auth/login.html @@ -3,14 +3,14 @@ {% block title %}Login{% endblock %} {% block content %} - <nav> - <a href="." class="selected">Login</a> - </nav> <form action="." method="POST"> {% csrf_token %} - {% for field in form %} - {% include "forms/_field.html" %} - {% endfor %} + <fieldset> + <legend>Login</legend> + {% for field in form %} + {% include "forms/_field.html" %} + {% endfor %} + </fieldset> <div class="buttons"> <button>Login</button> </div> |