From db9801069115a7a0c237c2c7de15d0f7e144b306 Mon Sep 17 00:00:00 2001 From: Leo Mouyna Date: Thu, 12 Sep 2019 21:38:52 +0200 Subject: fix: display validation message on password reminder Create a new route with a new generic page that display a title and a message on a

tag. This route will be triggered after succesfully submit password reminder form See issue #455 --- ihatemoney/templates/display_message.html | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ihatemoney/templates/display_message.html (limited to 'ihatemoney/templates') diff --git a/ihatemoney/templates/display_message.html b/ihatemoney/templates/display_message.html new file mode 100644 index 0000000..37be42a --- /dev/null +++ b/ihatemoney/templates/display_message.html @@ -0,0 +1,8 @@ +{% extends "layout.html" %} + +{% block content %} +

{{ _(title) }}

+

+ {{message}} +

+{% endblock %} -- cgit v1.1