diff options
author | luxagraf <sng@luxagraf.net> | 2023-07-24 15:19:56 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2023-07-24 15:19:56 -0500 |
commit | dc7a649e783546c8e8a47bc004be3799b1b60d1a (patch) | |
tree | 9fc591eea6fcc9bfe62746bb08310510e1200fa2 /templates/base.html | |
parent | d5c3fdc2be4cf7e19102218aea980ff2f52fc02b (diff) |
notes: rearranged some things, added registration templates
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index c771084..e248573 100644 --- a/templates/base.html +++ b/templates/base.html @@ -20,9 +20,14 @@ <a class="logo-link" href="/" title="Home">Wired Guide Tool</span></a> </div> <nav> - <a class="nav-item" href="/posts" title="View Guides">Guides</a> <a class="nav-item" href="/notes/todo" title="See what needs to be called in">Todo</a> <a class="nav-item" href="/notes" title="View Guides">Notes</a> + <a class="nav-item" href="/posts" title="View Guides">Guides</a> + <span class="nav-item" > + <form class="inline btn" action="/logout/" method="post">{% csrf_token %} + <button type="submit" value="Log out" class="btn-link">Log out</button> + </form> + </span> </nav> </header> {% block breadcrumbs %}{% endblock %} |