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
|
|
|
%>
|
|
|
|
|
2024-10-03 14:42:22 -04:00
|
|
|
<%= styled_form_with url: sessions_path, class: "space-y-4" 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
|
|
|
|
2024-07-16 14:08:24 -04:00
|
|
|
<%= form.password_field :password, label: t(".password"), required: "required" %>
|
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">
|
2024-10-23 11:20:55 -04:00
|
|
|
<%= link_to t(".forgot_password"), new_password_reset_path, class: "font-medium text-sm text-gray-900 hover:underline transition" %>
|
2024-02-03 16:14:47 +00:00
|
|
|
</div>
|