Commit 0baefdcd3cdb32577ec05f729c6d3b0dfa7073ed
1 parent
3e4d36a8
Exists in
master
and in
1 other branch
Fixes possible typo
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
app/views/devise/passwords/new.html.haml
1 | -- content_for :title, "Forget your password?" | 1 | +- content_for :title, "Forgot your password?" |
2 | = form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| | 2 | = form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f| |
3 | = errors_for resource | 3 | = errors_for resource |
4 | .required | 4 | .required |
app/views/devise/sessions/new.html.haml
@@ -12,7 +12,7 @@ | @@ -12,7 +12,7 @@ | ||
12 | = f.text_field auth_key, :type => (Errbit::Config.user_has_username ? 'text' : 'email'), :tabindex => 1, :autofocus => true | 12 | = f.text_field auth_key, :type => (Errbit::Config.user_has_username ? 'text' : 'email'), :tabindex => 1, :autofocus => true |
13 | 13 | ||
14 | .required | 14 | .required |
15 | - = link_to 'forget it?', new_password_path(resource_name), :class => 'float-right', :id => "forgot_password" | 15 | + = link_to 'forgot it?', new_password_path(resource_name), :class => 'float-right', :id => "forgot_password" |
16 | = f.label :password | 16 | = f.label :password |
17 | = f.password_field :password, :tabindex => 2 | 17 | = f.password_field :password, :tabindex => 2 |
18 | 18 |