diff options
author | blendoit <blendoit@gmail.com> | 2020-01-22 18:17:38 -0800 |
---|---|---|
committer | blendoit <blendoit@gmail.com> | 2020-01-22 18:17:38 -0800 |
commit | 6256335ef802e2823ac0118c01c7fe31e38e7287 (patch) | |
tree | f4d1633da886db94b450b70252ac935594ce73b8 /app/templates/login.html | |
parent | 2f1d0719faa0d955a82e87c0ea022f458e1c699f (diff) |
Second commit.
Diffstat (limited to 'app/templates/login.html')
-rw-r--r-- | app/templates/login.html | 34 |
1 files changed, 34 insertions, 0 deletions
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 %} + +<div class="content-section"> + <form method="POST" action=""> + {{ form.hidden_tag() }} + <fieldset class="form-group"> + <legend>Join Today</legend> + <div class="form-group"> + {{ form.alias.label }} + {{ form.alias }} + </div> + <div class="form-group"> + {{ form.password.label }} + {{ form.password }} + </div> + <div class="form-group"> + {{ form.password_confirm.label }} + {{ form.password_confirm }} + </div> + </fieldset> + <div class="form-group"> + {{ form.submit(class="btn") }} + </div> + </form> +</div> + +<div> + <small> + Already have an account? <a href="{{ url_for('login') }}">Sign In</a> + </small> +</div> + +{% endblock content %} |