From d641266b0dc39903a7b23387dae242eb5268df42 Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Wed, 27 Sep 2017 16:48:40 +0200 Subject: [PATCH] template for user registration --- ordr2/templates/account/register.jinja2 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ordr2/templates/account/register.jinja2 diff --git a/ordr2/templates/account/register.jinja2 b/ordr2/templates/account/register.jinja2 new file mode 100644 index 0000000..37597c8 --- /dev/null +++ b/ordr2/templates/account/register.jinja2 @@ -0,0 +1,23 @@ +{% extends "ordr2:templates/layout.jinja2" %} +{% import 'ordr2:templates/macros.jinja2' as macros with context %} + +{% block subtitle %} Register {% endblock subtitle %} + +{% block content %} +
+ +
+
+
+

Register

+
+
+
+
+ {{form.render()|safe}} +
+
+
+ +
+{% endblock content %}