% content_for :title, t(".log_in") %>
<%= t(".log_in") %>
<%= form_with url: sessions_path do |f| %>
<%= f.label :username %>
<%= f.text_field :username, required: true %>
<%= f.label :password %>
<%= f.password_field :password, required: true %>
<%= f.submit t(".log_in") %>
<% end %>
<%= link_to(t(".forgot_password"), new_password_reset_path) %>