Skip to content

Commit

Permalink
Revert "Use input type email"
Browse files Browse the repository at this point in the history
  • Loading branch information
jaesivsm committed Jan 2, 2017
1 parent ecd4c50 commit dd6f896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/web/templates/signup.html
Expand Up @@ -10,7 +10,7 @@ <h2 class="form-signin-heading">Create an account</h2>
{% endfor %}

<label for="inputEmail" class="sr-only">{{_("Email")}}</label>
{{form.email(class_="form-control", type="email", id="inputEmail", placeholder="Email", required=True, autofocus=True)}}
{{form.email(class_="form-control", type="text", id="inputEmail", placeholder="Email", required=True, autofocus=True)}}
{% for error in form.email.errors %}
<span style="color: red;">{{ error }}<br /></span>
{% endfor %}
Expand Down

0 comments on commit dd6f896

Please sign in to comment.