From 1c4d73da43eed1c07822b77d1a6b5a53862da803 Mon Sep 17 00:00:00 2001 From: Joachim Lusiardi Date: Wed, 18 May 2016 08:19:11 +0200 Subject: [PATCH] Adds start page for unauthed visitors --- app/rollerverbrauch/templates/index.html | 42 ++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 app/rollerverbrauch/templates/index.html diff --git a/app/rollerverbrauch/templates/index.html b/app/rollerverbrauch/templates/index.html new file mode 100644 index 0000000..4ab1607 --- /dev/null +++ b/app/rollerverbrauch/templates/index.html @@ -0,0 +1,42 @@ +{% extends "layout.html" %} +{% from "security/_macros.html" import render_field_with_errors, render_field %} + +{% block body %} +
+
+
+
+

Join the pitstop community!

+ +

There are already {{ data.users}} members with {{ data.vehicles }} vehicles who have logged {{ data.pitstops }} pitstops fuelling {{ data.litres }}l for {{ data.kilometers }}km.

+ +

With pitstop community you can:

+
    +
  • manage multiple vehicles
  • +
  • track each pitstop
  • +
  • get statistics about the fuel consumption
  • +
+ +

Register your account now or log into your account.

+
+
+
+
+
+
+
+ {{ login_user_form.hidden_tag() }} + {{ render_field_with_errors(login_user_form.email) }} + {{ render_field_with_errors(login_user_form.password) }} + {{ render_field_with_errors(login_user_form.remember) }} + {{ render_field(login_user_form.next) }} + {{ render_field_with_errors(login_user_form.submit) }} + {% if security.recoverable %} + Forgot password + {% endif %} +
+
+
+
+
+{% endblock %}