summaryrefslogtreecommitdiffstats
path: root/templates/auth/login.html
diff options
context:
space:
mode:
authorAndrew Godwin2022-11-13 16:14:38 -0700
committerAndrew Godwin2022-11-13 16:15:14 -0700
commit34b24a0dcb044cb755e201ad1a83253d0690e78e (patch)
tree51e6842d9e1392fafcd617cf4de0fa7e28397c87 /templates/auth/login.html
parent5a8b6bb3d022a532562ad5fa6d629cfc48c51b46 (diff)
downloadtakahe-34b24a0dcb044cb755e201ad1a83253d0690e78e.tar.gz
takahe-34b24a0dcb044cb755e201ad1a83253d0690e78e.tar.bz2
takahe-34b24a0dcb044cb755e201ad1a83253d0690e78e.zip
More UI!
Diffstat (limited to 'templates/auth/login.html')
-rw-r--r--templates/auth/login.html17
1 files changed, 12 insertions, 5 deletions
diff --git a/templates/auth/login.html b/templates/auth/login.html
index f8e1c9d..c892c78 100644
--- a/templates/auth/login.html
+++ b/templates/auth/login.html
@@ -1,11 +1,18 @@
{% extends "base.html" %}
-{% load crispy_forms_tags %}
{% block title %}Login{% endblock %}
{% block content %}
- <section class="modal identities">
- <h1>Login</h1>
- {% crispy form form.helper %}
- </section>
+ <nav>
+ <a href="." class="selected">Login</a>
+ </nav>
+ <form action="." method="POST">
+ {% csrf_token %}
+ {% for field in form %}
+ {% include "forms/_field.html" %}
+ {% endfor %}
+ <div class="buttons">
+ <button>Login</button>
+ </div>
+ </form>
{% endblock %}