aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/recover.html
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-30 18:30:41 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-11-30 18:30:41 +0100
commitabd8facd80bfd4b4d600d8b38921ff819c9806a0 (patch)
tree8ce02b900378c1b93d1887f75ea5aadbef86fc3a /pyaggr3g470r/templates/recover.html
parentMinor changes (comment and logging). (diff)
downloadnewspipe-abd8facd80bfd4b4d600d8b38921ff819c9806a0.tar.gz
newspipe-abd8facd80bfd4b4d600d8b38921ff819c9806a0.tar.bz2
newspipe-abd8facd80bfd4b4d600d8b38921ff819c9806a0.zip
Minor changes to the layout.
Diffstat (limited to 'pyaggr3g470r/templates/recover.html')
-rw-r--r--pyaggr3g470r/templates/recover.html6
1 files changed, 1 insertions, 5 deletions
diff --git a/pyaggr3g470r/templates/recover.html b/pyaggr3g470r/templates/recover.html
index 8e690bdb..1098ffef 100644
--- a/pyaggr3g470r/templates/recover.html
+++ b/pyaggr3g470r/templates/recover.html
@@ -3,19 +3,15 @@
<div class="container">
<div class="jumbotron">
<h2>{{ _('Recover your account') }}</h2>
-
{% for message in form.email.errors %}
<div class="flash">{{ message }}</div>
{% endfor %}
-
<form action="{{ url_for('recover') }}" method=post>
{{ form.hidden_tag() }}
-
<div class="form-group">
{{ form.email(class_="form-control", placeholder=_('Your email')) }}
</div>
-
- {{ form.submit(class_="btn") }}
+ {{ form.submit(class_="btn btn-default") }}
</form>
</div>
</div><!-- /.container -->
bgstack15