Sha256: e5fd01877dd3824a64ca20484ffbeadeeffaebc37ec83efcf653ada3194807a3

Contents?: true

Size: 756 Bytes

Versions: 3

Compression:

Stored size: 756 Bytes

Contents

<div class="login_signup_box">
  <%= image_tag 'alchemy/alchemy-logo.svg', id: 'logo' %>
<% if @user.errors.blank? %>
  <%= render_message do %>
    <h1><%= Alchemy.t('Password reset') %></h1>
    <p><%= Alchemy.t('Please enter a new password') %></p>
  <% end %>
<% else %>
  <div id="errors" style="display: block">
    <%= devise_error_messages! %>
  </div>
<% end %>
  <%= alchemy_form_for resource, as: resource_name, url: update_password_path, method: 'patch' do |f| %>
    <%= f.hidden_field :reset_password_token %>
    <%= f.input :password, autofocus: true, label: Alchemy.t("New password") %>
    <%= f.input :password_confirmation, label: Alchemy.t("Confirm new password") %>
    <%= f.submit Alchemy.t("Change password") %>
  <% end %>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
alchemy-devise-4.0.0 app/views/alchemy/passwords/edit.html.erb
alchemy-devise-3.6.0 app/views/alchemy/passwords/edit.html.erb
alchemy-devise-3.5.0 app/views/alchemy/passwords/edit.html.erb