akkounts/app/views/security/index.html.erb
Sebastian Kippe 2e301c3019
All checks were successful
continuous-integration/drone/push Build is passing
Port admin to new layout
2022-02-20 11:22:06 -06:00

17 lines
435 B
Plaintext

<%= render partial: "components/header", locals: { page_title: "Account" } %>
<%= render layout: "components/main_simple" do %>
<section>
<h2>Security</h2>
</section>
<section>
<h3>Password change</h3>
<p>
<%= form_with(url: settings_reset_password_path, method: :post) do %>
<%= submit_tag("Send me a password reset link", class: 'btn-md btn-gray') %>
<% end %>
</p>
</section>
<% end %>