diff options
author | Sam | 2013-05-17 20:59:50 +0000 |
---|---|---|
committer | Sam | 2013-05-17 20:59:50 +0000 |
commit | 48ba921c234abb218b14d7f1ae4d5b017ab8d388 (patch) | |
tree | c8614aff3e6013a61eec42b4a52a3db1f9c9272f /wqflask/flask_security/templates/security/send_login.html | |
parent | 457712ce46beed04126535024daae603dd6136fc (diff) | |
download | genenetwork2-48ba921c234abb218b14d7f1ae4d5b017ab8d388.tar.gz |
Added flask_security locally
Diffstat (limited to 'wqflask/flask_security/templates/security/send_login.html')
-rw-r--r-- | wqflask/flask_security/templates/security/send_login.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/wqflask/flask_security/templates/security/send_login.html b/wqflask/flask_security/templates/security/send_login.html new file mode 100644 index 00000000..15611c57 --- /dev/null +++ b/wqflask/flask_security/templates/security/send_login.html @@ -0,0 +1,9 @@ +{% from "security/_macros.html" import render_field_with_errors, render_field %} +{% include "security/_messages.html" %} +<h1>Login</h1> +<form action="{{ url_for_security('login') }}" method="POST" name="send_login_form"> + {{ send_login_form.hidden_tag() }} + {{ render_field_with_errors(send_login_form.email) }} + {{ render_field(send_login_form.submit) }} +</form> +{% include "security/_menu.html" %}
\ No newline at end of file |