Sha256: bfbd31996782b716553fba950d424d8e9b3319f8a271101538dada18ba409ead
Contents?: true
Size: 1.31 KB
Versions: 3
Compression:
Stored size: 1.31 KB
Contents
- breadcrumb :edit_user 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! .form-group = f.label :email br = f.email_field :email, autofocus: true, class: 'form-control' - if devise_mapping.confirmable? && resource.pending_reconfirmation? div | Currently waiting confirmation for: = resource.unconfirmed_email .form-group = f.label :password i | (leave blank if you don't want to change it) br = f.password_field :password, autocomplete: "off", class: 'form-control' - if @minimum_password_length br em = @minimum_password_length | characters minimum .form-group = f.label :password_confirmation br = f.password_field :password_confirmation, autocomplete: "off", class: 'form-control' .form-group = f.label :current_password i | (we need your current password to confirm your changes) br = f.password_field :current_password, autocomplete: "off", class: 'form-control' .actions button.btn.btn-default | Update / h3 | Cancel my account / p | Unhappy? = button_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete
Version data entries
3 entries across 3 versions & 1 rubygems