diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-03 21:31:25 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-02-03 21:31:25 +0100 |
commit | 9068617fbb8957ae0cc97deff37bdaf7fb7dd966 (patch) | |
tree | 553379e0faedcaf55f0e58dabe5d3f8e3bf76b98 /src/web/templates/recover.html | |
parent | fixed loading of the CDN address (diff) | |
download | newspipe-9068617fbb8957ae0cc97deff37bdaf7fb7dd966.tar.gz newspipe-9068617fbb8957ae0cc97deff37bdaf7fb7dd966.tar.bz2 newspipe-9068617fbb8957ae0cc97deff37bdaf7fb7dd966.zip |
Fixed 'Page not found' error for the 'recover' page.
Diffstat (limited to 'src/web/templates/recover.html')
-rw-r--r-- | src/web/templates/recover.html | 2 |
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')) }} |