44 lines
2.1 KiB
Plaintext
44 lines
2.1 KiB
Plaintext
<%= link_to :back, class: "back" do %>
|
|
<span class="icon-angle-left float-left"></span>
|
|
<%= t("devise_views.users.registrations.edit.back_link") %>
|
|
<% end %>
|
|
|
|
<h2><%= t("devise_views.users.registrations.edit.edit") %></h2>
|
|
|
|
<%= form_for(resource, as: resource_name, url: registration_path(resource_name), html: { method: :put }) do |f| %>
|
|
<%= devise_error_messages! %>
|
|
<div class="row">
|
|
<div class="small-12 column">
|
|
<%= f.label :email, t("devise_views.users.registrations.edit.email_label") %>
|
|
<%= f.email_field :email, label: false, autofocus: true, placeholder: t("devise_views.users.registrations.edit.email_label") %>
|
|
</div>
|
|
|
|
<div class="small-12 column">
|
|
<% if devise_mapping.confirmable? && resource.pending_reconfirmation? %>
|
|
<div><%= t("devise_views.users.registrations.edit.waiting_for") %> <%= resource.unconfirmed_email %></div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.label :password, t("devise_views.users.registrations.edit.password_label") %>
|
|
<p class="note"><%= t("devise_views.users.registrations.edit.leave_blank") %></p>
|
|
<%= f.password_field :password, autocomplete: "off", label: false, placeholder: t("devise_views.users.registrations.edit.password_label") %>
|
|
</div>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.label :password_confirmation, t("devise_views.users.registrations.edit.password_confirmation_label") %>
|
|
<%= f.password_field :password_confirmation, label: false, autocomplete: "off", placeholder: t("devise_views.users.registrations.edit.password_confirmation_label") %>
|
|
</div>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.label :current_password, t("devise_views.users.registrations.edit.current_password_label") %>
|
|
<p class="note"><%= t("devise_views.users.registrations.edit.need_current") %></p>
|
|
<%= f.password_field :current_password, label: false, autocomplete: "off", placeholder: t("devise_views.users.registrations.edit.current_password_label") %>
|
|
</div>
|
|
|
|
<div class="small-12 column">
|
|
<%= f.submit t("devise_views.users.registrations.edit.update_submit"), class: "button" %>
|
|
</div>
|
|
</div>
|
|
<% end %>
|