aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/recover.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/templates/recover.html')
-rw-r--r--src/web/templates/recover.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/templates/recover.html b/src/web/templates/recover.html
index c1176d55..ada110dc 100644
--- a/src/web/templates/recover.html
+++ b/src/web/templates/recover.html
@@ -6,7 +6,7 @@
{% for message in form.email.errors %}
<div class="flash">{{ message }}</div>
{% endfor %}
- <form action="{{ url_for('recover') }}" method=post>
+ <form action="{{ url_for('user.recover') }}" method=post>
{{ form.hidden_tag() }}
<div class="form-group">
{{ form.email(class_="form-control", placeholder=_('Your email')) }}
bgstack15