diff options
author | blendoit <blendoit@gmail.com> | 2020-01-22 18:15:52 -0800 |
---|---|---|
committer | blendoit <blendoit@gmail.com> | 2020-01-22 18:15:52 -0800 |
commit | 2f1d0719faa0d955a82e87c0ea022f458e1c699f (patch) | |
tree | a6f5d5403d4884c9ef3e6c7c3b6060151fcc373b /website/app/templates/register.html |
First commit.
Diffstat (limited to 'website/app/templates/register.html')
-rw-r--r-- | website/app/templates/register.html | 31 |
1 files changed, 31 insertions, 0 deletions
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 %} + +<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 %} |