diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-08 21:14:23 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2016-04-08 21:14:23 +0200 |
commit | 46d306fa1c8fe1a6515969989a5e66fa8c9481b0 (patch) | |
tree | 2a85f6875b2d38b2166648678fe1f98e409420c9 /src/web/templates | |
parent | Removed vagrant folder. (diff) | |
download | newspipe-46d306fa1c8fe1a6515969989a5e66fa8c9481b0.tar.gz newspipe-46d306fa1c8fe1a6515969989a5e66fa8c9481b0.tar.bz2 newspipe-46d306fa1c8fe1a6515969989a5e66fa8c9481b0.zip |
Authentication to JARR with email address or nickname.
Diffstat (limited to 'src/web/templates')
-rw-r--r-- | src/web/templates/login.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/templates/login.html b/src/web/templates/login.html index 70e01f9c..4bbb28f9 100644 --- a/src/web/templates/login.html +++ b/src/web/templates/login.html @@ -7,9 +7,9 @@ {{ form.hidden_tag() }} <div class="form-group"> - {{ form.email(class_="form-control", placeholder=_('Your email')) }} + {{ form.email_or_nickmane(class_="form-control", placeholder=_('Your email or nickname')) }} </div> - {% for message in form.email.errors %} + {% for message in form.email_or_nickmane.errors %} <div class="alert alert-warning" role="alert">{{ message }}</div> {% endfor %} |