2024-04-21 14:01:10 +00:00
|
|
|
<% content_for :title, t(".log_in") %>
|
|
|
|
|
|
|
|
<h1><%= t(".log_in") %></h1>
|
|
|
|
|
|
|
|
<section class="inset">
|
|
|
|
<%= form_with url: sessions_path do |f| %>
|
|
|
|
<%= f.label :username %>
|
2024-05-29 07:24:21 +00:00
|
|
|
<%= f.text_field :username, required: true %>
|
2024-04-21 14:01:10 +00:00
|
|
|
|
|
|
|
<%= f.label :password %>
|
2024-05-29 07:24:21 +00:00
|
|
|
<%= f.password_field :password, required: true %>
|
2024-04-21 14:01:10 +00:00
|
|
|
|
|
|
|
<%= f.submit t(".log_in") %>
|
|
|
|
<% end %>
|
|
|
|
</section>
|
|
|
|
|
2024-06-03 10:54:38 +00:00
|
|
|
<%= link_to(t(".forgot_password"), new_password_reset_path) %>
|