akkounts/app/views/security/index.html.erb
Sebastian Kippe 835152c656
All checks were successful
continuous-integration/drone/push Build is passing
Introduce ViewComponent
https://viewcomponent.org
2022-02-20 16:53:11 -06:00

17 lines
400 B
Plaintext

<%= render HeaderComponent.new(title: "Account") %>
<%= render MainSimpleComponent.new 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 %>