39 lines
1.4 KiB
Text
39 lines
1.4 KiB
Text
<div class="container">
|
|
<div class="row">
|
|
<div class="col-md-3 mb-4">
|
|
<%= render partial: 'settings/nav_sidebar', locals: { tab: :credentials } %>
|
|
</div>
|
|
|
|
<div class="col-md-9">
|
|
<%= simple_form_for resource, as: resource_name, url: registration_path(resource_name), html: { method: :put } do |f| %>
|
|
<%= f.error_notification %>
|
|
|
|
<div class="form-inputs">
|
|
<%= f.input :email, required: true, autofocus: true %>
|
|
|
|
<% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>
|
|
<p><%= translate '.currently_waiting_confirmation_for_email', email: resource.unconfirmed_email %></p>
|
|
<% end %>
|
|
|
|
<%= f.input :password,
|
|
hint: translate('.leave_blank_if_you_don_t_want_to_change_it'),
|
|
required: false,
|
|
input_html: { autocomplete: 'new-password' } %>
|
|
|
|
<%= f.input :password_confirmation,
|
|
required: false,
|
|
input_html: { autocomplete: 'new-password' } %>
|
|
|
|
<%= f.input :current_password,
|
|
hint: translate('.we_need_your_current_password_to_confirm_your_changes'),
|
|
required: true,
|
|
input_html: { autocomplete: 'current-password' } %>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<%= f.button :submit, translate('.update') %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|