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/register.html | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 website/app/templates/register.html (limited to 'website/app/templates/register.html') diff --git a/website/app/templates/register.html b/website/app/templates/register.html new file mode 100644 index 0000000..456b8f7 --- /dev/null +++ b/website/app/templates/register.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} +{% block content %} + +
+
+ {{ form.hidden_tag() }} +
+ Create a new alias +
+ {{ form.alias.label(class="form-control-label") }} + {{ form.alias(class="form-control") }} +
+
+ {{ form.password.label(class="form-control-label") }} + {{ form.password(class="form-control") }} +
+
+ {{ form.password_confirm.label(class="form-control-label") }} + {{ form.password_confirm(class="form-control") }} +
+
+
+ {{ form.submit(class="btn") }} +
+
+
+
+ Sign in with existing alias? Sign In +
+ +{% endblock content %} -- cgit v1.2.3