summaryrefslogtreecommitdiff
path: root/app/templates/register.html
diff options
context:
space:
mode:
authorblendoit <blendoit@gmail.com>2020-01-22 18:17:38 -0800
committerblendoit <blendoit@gmail.com>2020-01-22 18:17:38 -0800
commit6256335ef802e2823ac0118c01c7fe31e38e7287 (patch)
treef4d1633da886db94b450b70252ac935594ce73b8 /app/templates/register.html
parent2f1d0719faa0d955a82e87c0ea022f458e1c699f (diff)
Second commit.
Diffstat (limited to 'app/templates/register.html')
-rw-r--r--app/templates/register.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/app/templates/register.html b/app/templates/register.html
new file mode 100644
index 0000000..456b8f7
--- /dev/null
+++ b/app/templates/register.html
@@ -0,0 +1,31 @@
+{% extends "base.html" %}
+{% block content %}
+
+<div class="content-section">
+ <form method="POST" action="">
+ {{ form.hidden_tag() }}
+ <fieldset class="form-group">
+ <legend>Create a new alias</legend>
+ <div class="form-group">
+ {{ form.alias.label(class="form-control-label") }}
+ {{ form.alias(class="form-control") }}
+ </div>
+ <div class="form-group">
+ {{ form.password.label(class="form-control-label") }}
+ {{ form.password(class="form-control") }}
+ </div>
+ <div class="form-group">
+ {{ form.password_confirm.label(class="form-control-label") }}
+ {{ form.password_confirm(class="form-control") }}
+ </div>
+ </fieldset>
+ <div class="form-group">
+ {{ form.submit(class="btn") }}
+ </div>
+ </form>
+</div>
+<div>
+ Sign in with existing alias? <a href="{{ url_for('login') }}">Sign In</a>
+</div>
+
+{% endblock content %}
Copyright 2019--2024 Marius PETER