aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-07-01 21:59:45 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-07-01 21:59:45 +0200
commite277c21a5abdf9a1cb7c06705a46d57b71a61003 (patch)
tree81395627c865784060174bf06031428e0b3ef573 /src/web/templates
parentUpdated Runtime for Heroku and Pipfile.lock (diff)
downloadnewspipe-e277c21a5abdf9a1cb7c06705a46d57b71a61003.tar.gz
newspipe-e277c21a5abdf9a1cb7c06705a46d57b71a61003.tar.bz2
newspipe-e277c21a5abdf9a1cb7c06705a46d57b71a61003.zip
Removed useless code.
Diffstat (limited to 'src/web/templates')
-rw-r--r--src/web/templates/recover.html18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/web/templates/recover.html b/src/web/templates/recover.html
deleted file mode 100644
index ada110dc..00000000
--- a/src/web/templates/recover.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{% extends "layout.html" %}
-{% block content %}
-<div class="container">
- <div class="well">
- <h2>{{ _('Recover your account') }}</h2>
- {% for message in form.email.errors %}
- <div class="flash">{{ message }}</div>
- {% endfor %}
- <form action="{{ url_for('user.recover') }}" method=post>
- {{ form.hidden_tag() }}
- <div class="form-group">
- {{ form.email(class_="form-control", placeholder=_('Your email')) }}
- </div>
- {{ form.submit(class_="btn btn-default") }}
- </form>
- </div>
-</div><!-- /.container -->
-{% endblock %}
bgstack15