akkounts/app/views/security/index.html.erb
Sebastian Kippe ca940ec35d
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
Consolidate some styles
2022-02-24 17:24:59 -06:00

14 lines
405 B
Plaintext

<%= render HeaderComponent.new(title: "Account") %>
<%= render MainSimpleComponent.new do %>
<section>
<h2 class="mb-12">Security</h2>
<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 w-full sm:w-auto') %>
<% end %>
</p>
</section>
<% end %>