From d1e59579ca19454369d56a8c7525e109a86841e2 Mon Sep 17 00:00:00 2001 From: fschildt Date: Fri, 17 Oct 2025 14:00:16 +0200 Subject: first commit --- apps/accounts/templates/accounts/login.html | 15 +++++++++++++++ apps/accounts/templates/accounts/register.html | 18 ++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 apps/accounts/templates/accounts/login.html create mode 100644 apps/accounts/templates/accounts/register.html (limited to 'apps/accounts/templates') diff --git a/apps/accounts/templates/accounts/login.html b/apps/accounts/templates/accounts/login.html new file mode 100644 index 0000000..5f11c28 --- /dev/null +++ b/apps/accounts/templates/accounts/login.html @@ -0,0 +1,15 @@ +{% extends 'base.html' %} + +{% block title %}Login - fsweb{% endblock %} + +{% block content %} +Log in. +
{% csrf_token %} +
+
+ +
+Don't have an account? Register +
+Forgot your password? Unfortunate. +{% endblock %} diff --git a/apps/accounts/templates/accounts/register.html b/apps/accounts/templates/accounts/register.html new file mode 100644 index 0000000..213250f --- /dev/null +++ b/apps/accounts/templates/accounts/register.html @@ -0,0 +1,18 @@ +{% extends 'base.html' %} + +{% block title %}Login - fsweb{% endblock %} + +{% block content %} +Create account.
+
{% csrf_token %} +
+
+
+
+ +
+
+{{ form.errors }} +
+Already have an account? Go to Login +{% endblock %} -- cgit v1.2.3