diff options
author | Andrew Godwin | 2022-11-05 14:17:27 -0600 |
---|---|---|
committer | Andrew Godwin | 2022-11-05 14:17:27 -0600 |
commit | d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7 (patch) | |
tree | dd356a933b8179a22e5da6e938acd96a175ac0d6 /templates/auth | |
download | takahe-d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7.tar.gz takahe-d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7.tar.bz2 takahe-d77dcf62b4005a0f36ef2fa7ba6d3651d2ef38d7.zip |
Initial commit (users and statuses)
Diffstat (limited to 'templates/auth')
-rw-r--r-- | templates/auth/login.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/auth/login.html b/templates/auth/login.html new file mode 100644 index 0000000..f8e1c9d --- /dev/null +++ b/templates/auth/login.html @@ -0,0 +1,11 @@ +{% 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> +{% endblock %} |