From e38854c7db0fe6f006304d7f638b6aa190fc2d87 Mon Sep 17 00:00:00 2001 From: mrw1593 Date: Mon, 15 May 2023 21:42:47 -0400 Subject: Started on frontend --- static/templates/base.html | 16 ++++++++++++++++ static/templates/login.html | 11 +++++++++++ 2 files changed, 27 insertions(+) create mode 100644 static/templates/base.html create mode 100644 static/templates/login.html (limited to 'static/templates') diff --git a/static/templates/base.html b/static/templates/base.html new file mode 100644 index 0000000..2d9f8fd --- /dev/null +++ b/static/templates/base.html @@ -0,0 +1,16 @@ + + + + {% block title %}{% endblock title %} + + + + {% block head %}{% endblock head %} + + + {% block content %}{% endblock content %} + + + diff --git a/static/templates/login.html b/static/templates/login.html new file mode 100644 index 0000000..fd3d136 --- /dev/null +++ b/static/templates/login.html @@ -0,0 +1,11 @@ +{% extends "base.html" %} +{% block title %}Log In{% endblock title %} +{% block content %} +
+ + + + + +
+{% endblock content %} \ No newline at end of file -- cgit v1.2.3