From b35e9773198ef2d8b37c4ca223f08147db47de0b Mon Sep 17 00:00:00 2001 From: François Schmidts Date: Sat, 12 Dec 2015 21:14:28 +0100 Subject: moving the root of source code from / to /src/ --- src/web/templates/login.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/web/templates/login.html (limited to 'src/web/templates/login.html') diff --git a/src/web/templates/login.html b/src/web/templates/login.html new file mode 100644 index 00000000..c37d6937 --- /dev/null +++ b/src/web/templates/login.html @@ -0,0 +1,30 @@ +{% extends "layout.html" %} +{% block content %} +
+
+

{{ _('Log In') }}

+
+ {{ form.hidden_tag() }} + +
+ {{ form.email(class_="form-control", placeholder=_('Your email')) }} +
+ {% for message in form.email.errors %} + + {% endfor %} + +
+ {{ form.password(class_="form-control", placeholder=_('Your Password')) }} +
+ {% for message in form.password.errors %} + + {% endfor %} + + {{ form.submit(class_="btn btn-default") }} +
+
+ {{ _('Sign up') }} +   + {{ _('Forgot password') }} +
+{% endblock %} -- cgit