Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Adding autocomplete="email" to email fields (#4643)
As discussed in #4635
  • Loading branch information
MikeRogers0 authored and tegon committed Dec 21, 2017
1 parent 7b30817 commit 16b3d6d
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/views/devise/confirmations/new.html.erb
Expand Up @@ -5,7 +5,7 @@

<div class="field">
<%= f.label :email %><br />
<%= f.email_field :email, autofocus: true, value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %>
<%= f.email_field :email, autofocus: true, autocomplete: "email", value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %>
</div>

<div class="actions">
Expand Down
2 changes: 1 addition & 1 deletion app/views/devise/passwords/new.html.erb
Expand Up @@ -5,7 +5,7 @@

<div class="field">
<%= f.label :email %><br />
<%= f.email_field :email, autofocus: true %>
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
</div>

<div class="actions">
Expand Down
2 changes: 1 addition & 1 deletion app/views/devise/registrations/edit.html.erb
Expand Up @@ -5,7 +5,7 @@

<div class="field">
<%= f.label :email %><br />
<%= f.email_field :email, autofocus: true %>
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
</div>

<% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>
Expand Down
2 changes: 1 addition & 1 deletion app/views/devise/registrations/new.html.erb
Expand Up @@ -5,7 +5,7 @@

<div class="field">
<%= f.label :email %><br />
<%= f.email_field :email, autofocus: true %>
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
</div>

<div class="field">
Expand Down
2 changes: 1 addition & 1 deletion app/views/devise/sessions/new.html.erb
Expand Up @@ -3,7 +3,7 @@
<%= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f| %>
<div class="field">
<%= f.label :email %><br />
<%= f.email_field :email, autofocus: true %>
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
</div>

<div class="field">
Expand Down
2 changes: 1 addition & 1 deletion app/views/devise/unlocks/new.html.erb
Expand Up @@ -5,7 +5,7 @@

<div class="field">
<%= f.label :email %><br />
<%= f.email_field :email, autofocus: true %>
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
</div>

<div class="actions">
Expand Down

0 comments on commit 16b3d6d

Please sign in to comment.