diff --git a/app/views/devise/mailer/confirmation_instructions.html.haml b/app/views/devise/mailer/confirmation_instructions.html.haml index 4856f9471..ff6cb767d 100644 --- a/app/views/devise/mailer/confirmation_instructions.html.haml +++ b/app/views/devise/mailer/confirmation_instructions.html.haml @@ -47,5 +47,5 @@ #container %p = t('devise.mailer.welcome', :email => @resource.email) - %p = t('.you_can_confirm') + %p= t('.you_can_confirm') %p= link_to t('.confirm'), confirmation_url(@resource, :confirmation_token => @resource.confirmation_token), :class => "large_text" diff --git a/app/views/devise/mailer/reset_password_instructions.html.haml b/app/views/devise/mailer/reset_password_instructions.html.haml index 517333444..eaef603d6 100644 --- a/app/views/devise/mailer/reset_password_instructions.html.haml +++ b/app/views/devise/mailer/reset_password_instructions.html.haml @@ -47,7 +47,7 @@ #container %p = t('devise.mailer.hello', :email => @resource.email) - %p = t('.someone_requested') + %p= t('.someone_requested') %p= link_to t('.change'), edit_password_url(@resource, :reset_password_token => @resource.reset_password_token), :class => "large_text" - %p = t('.wont_change') - %p.small = t('.ignore') + %p= t('.wont_change') + %p.small= t('.ignore') diff --git a/app/views/devise/mailer/unlock_instructions.html.haml b/app/views/devise/mailer/unlock_instructions.html.haml index d6359afea..e33216249 100644 --- a/app/views/devise/mailer/unlock_instructions.html.haml +++ b/app/views/devise/mailer/unlock_instructions.html.haml @@ -47,6 +47,6 @@ #container %p = t('devise.mailer.hello', :email => @resource.email) - %p = t('.account_locked') - %p = t('.click_to_unlock') + %p= t('.account_locked') + %p= t('.click_to_unlock') %p= link_to t('.unlock'), unlock_url(@resource, :unlock_token => @resource.unlock_token), :class => "large_text"