parent
e93f12c22a
commit
7e051222aa
@ -0,0 +1,10 @@
|
|||||||
|
%h2 Resend confirmation instructions
|
||||||
|
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
|
||||||
|
= devise_error_messages!
|
||||||
|
.field
|
||||||
|
= f.label :email
|
||||||
|
%br/
|
||||||
|
= 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"
|
||||||
@ -0,0 +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)
|
||||||
@ -0,0 +1,3 @@
|
|||||||
|
%p
|
||||||
|
Hello #{@resource.email}!
|
||||||
|
%p We're contacting you to notify you that your password has been changed.
|
||||||
@ -0,0 +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 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.
|
||||||
@ -0,0 +1,5 @@
|
|||||||
|
%p
|
||||||
|
Hello #{@resource.email}!
|
||||||
|
%p Your account has been locked due to an excessive number of unsuccessful sign in attempts.
|
||||||
|
%p Click the link below to unlock your account:
|
||||||
|
%p= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token)
|
||||||
@ -0,0 +1,19 @@
|
|||||||
|
%h2 Change your password
|
||||||
|
= 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
|
||||||
|
.field
|
||||||
|
= f.label :password, "New password"
|
||||||
|
%br/
|
||||||
|
- 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, autocomplete: "off"
|
||||||
|
.actions
|
||||||
|
= f.submit "Change my password"
|
||||||
|
= render "devise/shared/links"
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
%h2 Forgot your password?
|
||||||
|
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f|
|
||||||
|
= devise_error_messages!
|
||||||
|
.field
|
||||||
|
= f.label :email
|
||||||
|
%br/
|
||||||
|
= f.email_field :email, autofocus: true
|
||||||
|
.actions
|
||||||
|
= f.submit "Send me reset password instructions"
|
||||||
|
= render "devise/shared/links"
|
||||||
@ -0,0 +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|
|
||||||
|
= devise_error_messages!
|
||||||
|
.field
|
||||||
|
= f.label :email
|
||||||
|
%br/
|
||||||
|
= f.email_field :email, autofocus: true
|
||||||
|
- if devise_mapping.confirmable? && resource.pending_reconfirmation?
|
||||||
|
%div
|
||||||
|
Currently waiting confirmation for: #{resource.unconfirmed_email}
|
||||||
|
.field
|
||||||
|
= f.label :password
|
||||||
|
%i (leave blank if you don't want to change it)
|
||||||
|
%br/
|
||||||
|
= 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, autocomplete: "off"
|
||||||
|
.field
|
||||||
|
= f.label :current_password
|
||||||
|
%i (we need your current password to confirm your changes)
|
||||||
|
%br/
|
||||||
|
= 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}
|
||||||
|
= link_to "Back", :back
|
||||||
@ -0,0 +1,28 @@
|
|||||||
|
.row
|
||||||
|
.offset-sm-2.col-sm-8
|
||||||
|
%h3 Register A New Account
|
||||||
|
= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
|
||||||
|
= devise_error_messages!
|
||||||
|
|
||||||
|
.form-group
|
||||||
|
= f.label :email
|
||||||
|
%br/
|
||||||
|
= f.email_field :email, autofocus: true, class: 'form-control'
|
||||||
|
|
||||||
|
.form-group
|
||||||
|
= f.label :password
|
||||||
|
- if @minimum_password_length
|
||||||
|
%em
|
||||||
|
(#{@minimum_password_length} characters minimum)
|
||||||
|
%br/
|
||||||
|
= f.password_field :password, autocomplete: "off", class: 'form-control'
|
||||||
|
|
||||||
|
.form-group
|
||||||
|
= f.label :password_confirmation
|
||||||
|
%br/
|
||||||
|
= f.password_field :password_confirmation, autocomplete: "off", class: 'form-control'
|
||||||
|
|
||||||
|
.form-group
|
||||||
|
= f.submit "Sign Up", class: 'btn btn-primary'
|
||||||
|
|
||||||
|
= render "devise/shared/links"
|
||||||
@ -0,0 +1,30 @@
|
|||||||
|
.row
|
||||||
|
.offset-sm-2.col-sm-8
|
||||||
|
%h3 Log In To Your Account
|
||||||
|
= form_for(resource, as: resource_name, url: session_path(resource_name)) do |f|
|
||||||
|
= devise_error_messages!
|
||||||
|
|
||||||
|
.form-group
|
||||||
|
= f.label :email
|
||||||
|
%br/
|
||||||
|
= f.email_field :email, autofocus: true, class: 'form-control'
|
||||||
|
|
||||||
|
.form-group
|
||||||
|
= f.label :password
|
||||||
|
- if @minimum_password_length
|
||||||
|
%em
|
||||||
|
(#{@minimum_password_length} characters minimum)
|
||||||
|
%br/
|
||||||
|
= f.password_field :password, autocomplete: "off", class: 'form-control'
|
||||||
|
|
||||||
|
- if devise_mapping.rememberable?
|
||||||
|
.form-group
|
||||||
|
.form-check
|
||||||
|
.form-check-label
|
||||||
|
= f.check_box :remember_me, class: 'form-check-input'
|
||||||
|
= f.label :remember_me
|
||||||
|
|
||||||
|
.form-group
|
||||||
|
= f.submit "Log In", class: 'btn btn-primary'
|
||||||
|
|
||||||
|
= render "devise/shared/links"
|
||||||
@ -0,0 +1,49 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- if controller_name != 'sessions'
|
||||||
|
Already have an account?
|
||||||
|
= link_to "Log In", new_session_path(resource_name)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- if devise_mapping.registerable? && controller_name != 'registrations'
|
||||||
|
Don't have an account?
|
||||||
|
= link_to "Sign Up", new_registration_path(resource_name)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations'
|
||||||
|
= link_to "Forgot your password?", new_password_path(resource_name)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- if devise_mapping.confirmable? && controller_name != 'confirmations'
|
||||||
|
= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- 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)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
- 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)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
%h2 Resend unlock instructions
|
||||||
|
= form_for(resource, as: resource_name, url: unlock_path(resource_name), html: { method: :post }) do |f|
|
||||||
|
= devise_error_messages!
|
||||||
|
.field
|
||||||
|
= f.label :email
|
||||||
|
%br/
|
||||||
|
= f.email_field :email, autofocus: true
|
||||||
|
.actions
|
||||||
|
= f.submit "Resend unlock instructions"
|
||||||
|
= render "devise/shared/links"
|
||||||
Loading…
Reference in new issue