2024-02-02 09:05:04 -06:00
|
|
|
<%
|
2024-04-09 16:08:58 +04:00
|
|
|
header_title t(".title")
|
2024-02-02 09:05:04 -06:00
|
|
|
%>
|
|
|
|
|
2025-03-05 13:32:53 -06:00
|
|
|
<%= styled_form_with url: sessions_path, class: "space-y-4", data: { turbo: false } do |form| %>
|
2024-04-09 16:08:58 +04:00
|
|
|
<%= form.email_field :email, label: t(".email"), autofocus: false, autocomplete: "email", required: "required", placeholder: t(".email_placeholder") %>
|
2024-02-02 09:05:04 -06:00
|
|
|
|
2025-04-18 18:53:10 +05:30
|
|
|
<%= form.password_field :password, label: t(".password"), required: "required", placeholder: t(".password_placeholder") %>
|
2024-02-02 09:05:04 -06:00
|
|
|
|
2024-04-09 16:08:58 +04:00
|
|
|
<%= form.submit t(".submit") %>
|
2024-02-02 09:05:04 -06:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="mt-6 text-center">
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= link_to t(".forgot_password"), new_password_reset_path, class: "font-medium text-sm text-primary hover:underline transition" %>
|
2024-02-03 16:14:47 +00:00
|
|
|
</div>
|