Sha256: a30976f23347c595f7595ca8411c4131472b5c191a3176bdf6c6b74c65979cfa
Contents?: true
Size: 1.24 KB
Versions: 16
Compression:
Stored size: 1.24 KB
Contents
<h1><%= t('.title', resource: resource_name.to_s.humanize) %></h1> <%= form_for(resource, as: resource_name, url: user_registration_path(resource_name), html: { method: :put }) do |f| %> <%= bootstrap_devise_error_messages! %> <div class="form-group"> <%= f.label :email %> <%= f.email_field :email, autofocus: true, autocomplete: 'email', class: 'form-control' %> </div> <div class="form-group"> <%= f.label :password %> <%= f.password_field :password, autocomplete: 'new-password', class: 'form-control' %> <small class="form-text text-muted"><%= t('.leave_blank_if_you_don_t_want_to_change_it') %></small> </div> <div class="form-group"> <%= f.label :password_confirmation %> <%= f.password_field :password_confirmation, autocomplete: 'new-password', class: 'form-control' %> </div> <div class="form-group"> <%= f.label :current_password %> <%= f.password_field :current_password, autocomplete: 'current-password', class: 'form-control' %> <small class="form-text text-muted"><%= t('.we_need_your_current_password_to_confirm_your_changes') %></small> </div> <div class="form-group"> <%= f.submit t('.update'), class: 'btn btn-primary' %> </div> <% end %> <%= link_to t('.back'), :back %>
Version data entries
16 entries across 16 versions & 1 rubygems