Sha256: 999390eeb53ea950f9af9923186a7a867a71342e62bd4934ab44528311710010
Contents?: true
Size: 918 Bytes
Versions: 14
Compression:
Stored size: 918 Bytes
Contents
<div class="container"> <%= simple_form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put, class: 'card' }) do |f| %> <%= f.error_notification %> <div class="card-header"> <%= form_legend %> </div> <div class="card-body"> <%= f.input :email, required: true, autofocus: true %> <% if devise_mapping.confirmable? && resource.pending_reconfirmation? %> <p>Currently waiting confirmation for: <%= resource.unconfirmed_email %></p> <% end %> <%= f.input :password, autocomplete: "off", hint: "leave it blank if you don't want to change it", required: false %> <%= f.input :password_confirmation, required: false %> <%= f.input :current_password, hint: "we need your current password to confirm your changes", required: true %> <%= f.button :submit, class: 'btn btn-primary' %> <%= cancel_button %> </div> <% end %> </div>
Version data entries
14 entries across 14 versions & 1 rubygems