parent
43cb4b9270
commit
86684e6bf2
@ -1,9 +1,10 @@
|
||||
%h2 Resend confirmation instructions
|
||||
= form_for(resource, :as => resource_name, :url => confirmation_path(resource_name), :html => { :method => :post }) do |f|
|
||||
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
|
||||
= devise_error_messages!
|
||||
%div
|
||||
.field
|
||||
= f.label :email
|
||||
%br/
|
||||
= f.email_field :email, :autofocus => true
|
||||
%div= f.submit "Resend confirmation instructions"
|
||||
= f.email_field :email, autofocus: true, value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email)
|
||||
.actions
|
||||
= f.submit "Resend confirmation instructions"
|
||||
= render "devise/shared/links"
|
||||
|
@ -1,4 +1,4 @@
|
||||
%p
|
||||
Welcome #{@email}!
|
||||
%p You can confirm your account email through the link below:
|
||||
%p= link_to 'Confirm my account', confirmation_url(@resource, :confirmation_token => @token)
|
||||
%p= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token)
|
||||
|
@ -0,0 +1,8 @@
|
||||
%p
|
||||
Hello #{@email}!
|
||||
- if @resource.try(:unconfirmed_email?)
|
||||
%p
|
||||
We're contacting you to notify you that your email is being changed to #{@resource.unconfirmed_email}.
|
||||
- else
|
||||
%p
|
||||
We're contacting you to notify you that your email has been changed to #{@resource.email}.
|
@ -0,0 +1,3 @@
|
||||
%p
|
||||
Hello #{@resource.email}!
|
||||
%p We're contacting you to notify you that your password has been changed.
|
@ -1,6 +1,6 @@
|
||||
%p
|
||||
Hello #{@resource.email}!
|
||||
%p Someone has requested a link to change your password. You can do this through the link below.
|
||||
%p= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @token)
|
||||
%p= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token)
|
||||
%p If you didn't request this, please ignore this email.
|
||||
%p Your password won't change until you access the link above and create a new one.
|
||||
|
@ -1,14 +1,19 @@
|
||||
%h2 Change your password
|
||||
= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :put }) do |f|
|
||||
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
|
||||
= devise_error_messages!
|
||||
= f.hidden_field :reset_password_token
|
||||
%div
|
||||
.field
|
||||
= f.label :password, "New password"
|
||||
%br/
|
||||
= f.password_field :password, :autofocus => true
|
||||
%div
|
||||
- if @minimum_password_length
|
||||
%em
|
||||
(#{@minimum_password_length} characters minimum)
|
||||
%br/
|
||||
= f.password_field :password, autofocus: true, autocomplete: "off"
|
||||
.field
|
||||
= f.label :password_confirmation, "Confirm new password"
|
||||
%br/
|
||||
= f.password_field :password_confirmation
|
||||
%div= f.submit "Change my password"
|
||||
= f.password_field :password_confirmation, autocomplete: "off"
|
||||
.actions
|
||||
= f.submit "Change my password"
|
||||
= render "devise/shared/links"
|
||||
|
@ -1,9 +1,10 @@
|
||||
%h2 Forgot your password?
|
||||
= form_for(resource, :as => resource_name, :url => password_path(resource_name), :html => { :method => :post }) do |f|
|
||||
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
|
||||
= devise_error_messages!
|
||||
%div
|
||||
.field
|
||||
= f.label :email
|
||||
%br/
|
||||
= f.email_field :email, :autofocus => true
|
||||
%div= f.submit "Send me reset password instructions"
|
||||
= f.email_field :email, autofocus: true
|
||||
.actions
|
||||
= f.submit "Send me reset password instructions"
|
||||
= render "devise/shared/links"
|
||||
|
@ -1,30 +1,36 @@
|
||||
%h2
|
||||
Edit #{resource_name.to_s.humanize}
|
||||
= form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => { :method => :put }) do |f|
|
||||
= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f|
|
||||
= devise_error_messages!
|
||||
%div
|
||||
.field
|
||||
= f.label :email
|
||||
%br/
|
||||
= f.email_field :email, :autofocus => true
|
||||
= f.email_field :email, autofocus: true
|
||||
- if devise_mapping.confirmable? && resource.pending_reconfirmation?
|
||||
%div
|
||||
Currently waiting confirmation for: #{resource.unconfirmed_email}
|
||||
%div
|
||||
.field
|
||||
= f.label :password
|
||||
%i (leave blank if you don't want to change it)
|
||||
%br/
|
||||
= f.password_field :password, :autocomplete => "off"
|
||||
%div
|
||||
= f.password_field :password, autocomplete: "off"
|
||||
- if @minimum_password_length
|
||||
%br/
|
||||
%em
|
||||
= @minimum_password_length
|
||||
characters minimum
|
||||
.field
|
||||
= f.label :password_confirmation
|
||||
%br/
|
||||
= f.password_field :password_confirmation
|
||||
%div
|
||||
= f.password_field :password_confirmation, autocomplete: "off"
|
||||
.field
|
||||
= f.label :current_password
|
||||
%i (we need your current password to confirm your changes)
|
||||
%br/
|
||||
= f.password_field :current_password
|
||||
%div= f.submit "Update"
|
||||
= f.password_field :current_password, autocomplete: "off"
|
||||
.actions
|
||||
= f.submit "Update"
|
||||
%h3 Cancel my account
|
||||
%p
|
||||
Unhappy? #{button_to "Cancel my account", registration_path(resource_name), :data => { :confirm => "Are you sure?" }, :method => :delete}
|
||||
Unhappy? #{button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete}
|
||||
= link_to "Back", :back
|
||||
|
@ -1,17 +1,21 @@
|
||||
%h2 Sign up
|
||||
= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f|
|
||||
= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
|
||||
= devise_error_messages!
|
||||
%div
|
||||
.field
|
||||
= f.label :email
|
||||
%br/
|
||||
= f.email_field :email, :autofocus => true
|
||||
%div
|
||||
= f.email_field :email, autofocus: true
|
||||
.field
|
||||
= f.label :password
|
||||
- if @minimum_password_length
|
||||
%em
|
||||
(#{@minimum_password_length} characters minimum)
|
||||
%br/
|
||||
= f.password_field :password
|
||||
%div
|
||||
= f.password_field :password, autocomplete: "off"
|
||||
.field
|
||||
= f.label :password_confirmation
|
||||
%br/
|
||||
= f.password_field :password_confirmation
|
||||
%div= f.submit "Sign up"
|
||||
= f.password_field :password_confirmation, autocomplete: "off"
|
||||
.actions
|
||||
= f.submit "Sign up"
|
||||
= render "devise/shared/links"
|
||||
|
@ -0,0 +1,19 @@
|
||||
- if controller_name != 'sessions'
|
||||
= link_to "Log in", new_session_path(resource_name)
|
||||
%br/
|
||||
- if devise_mapping.registerable? && controller_name != 'registrations'
|
||||
= link_to "Sign up", new_registration_path(resource_name)
|
||||
%br/
|
||||
- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations'
|
||||
= link_to "Forgot your password?", new_password_path(resource_name)
|
||||
%br/
|
||||
- if devise_mapping.confirmable? && controller_name != 'confirmations'
|
||||
= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name)
|
||||
%br/
|
||||
- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks'
|
||||
= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name)
|
||||
%br/
|
||||
- if devise_mapping.omniauthable?
|
||||
- resource_class.omniauth_providers.each do |provider|
|
||||
= link_to "Sign in with #{OmniAuth::Utils.camelize(provider)}", omniauth_authorize_path(resource_name, provider)
|
||||
%br/
|
@ -1,9 +1,10 @@
|
||||
%h2 Resend unlock instructions
|
||||
= form_for(resource, :as => resource_name, :url => unlock_path(resource_name), :html => { :method => :post }) do |f|
|
||||
= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
|
||||
= devise_error_messages!
|
||||
%div
|
||||
.field
|
||||
= f.label :email
|
||||
%br/
|
||||
= f.email_field :email, :autofocus => true
|
||||
%div= f.submit "Resend unlock instructions"
|
||||
= f.email_field :email, autofocus: true
|
||||
.actions
|
||||
= f.submit "Resend unlock instructions"
|
||||
= render "devise/shared/links"
|
||||
|
Loading…
Reference in new issue