From 6256335ef802e2823ac0118c01c7fe31e38e7287 Mon Sep 17 00:00:00 2001 From: blendoit Date: Wed, 22 Jan 2020 18:17:38 -0800 Subject: Second commit. --- app/templates/login.html | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 app/templates/login.html (limited to 'app/templates/login.html') diff --git a/app/templates/login.html b/app/templates/login.html new file mode 100644 index 0000000..63217e1 --- /dev/null +++ b/app/templates/login.html @@ -0,0 +1,34 @@ +{% extends "base.html" %} +{% block content %} + +
+
+ {{ form.hidden_tag() }} +
+ Join Today +
+ {{ form.alias.label }} + {{ form.alias }} +
+
+ {{ form.password.label }} + {{ form.password }} +
+
+ {{ form.password_confirm.label }} + {{ form.password_confirm }} +
+
+
+ {{ form.submit(class="btn") }} +
+
+
+ +
+ + Already have an account? Sign In + +
+ +{% endblock content %} -- cgit v1.2.3