mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
PR remarks
This commit is contained in:
parent
db98010691
commit
fabceefece
2 changed files with 8 additions and 2 deletions
|
@ -5,4 +5,6 @@
|
|||
<p>
|
||||
{{message}}
|
||||
</p>
|
||||
<a class="btn btn-primary" href="{{ url_for('.home')}}">Return to home page</a>
|
||||
|
||||
{% endblock %}
|
|
@ -284,8 +284,12 @@ def remind_password():
|
|||
|
||||
@main.route("/password-reminder-sent", methods=["GET"])
|
||||
def password_reminder_sent():
|
||||
message = "A link to reset your password has been sent to you, please check your emails"
|
||||
return render_template("display_message.html", title="Password reminder", message=message)
|
||||
message = "A link to reset your password has been sent to you, please check your emails."
|
||||
return render_template(
|
||||
"password_reminder_sent.html",
|
||||
title="Password reminder",
|
||||
message=message
|
||||
)
|
||||
|
||||
|
||||
@main.route('/reset-password', methods=['GET', 'POST'])
|
||||
|
|
Loading…
Reference in a new issue