From 2f1d0719faa0d955a82e87c0ea022f458e1c699f Mon Sep 17 00:00:00 2001 From: blendoit Date: Wed, 22 Jan 2020 18:15:52 -0800 Subject: First commit. --- website/app/templates/login.html | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 website/app/templates/login.html (limited to 'website/app/templates/login.html') diff --git a/website/app/templates/login.html b/website/app/templates/login.html new file mode 100644 index 0000000..63217e1 --- /dev/null +++ b/website/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