2024-02-02 09:05:04 -06:00
|
|
|
<%
|
2024-02-06 14:58:17 -03:00
|
|
|
header_title t('.title')
|
2024-02-02 09:05:04 -06:00
|
|
|
%>
|
|
|
|
|
2024-02-09 15:29:31 +00:00
|
|
|
<%= form_with url: session_path do |form| %>
|
2024-02-03 14:17:49 -06:00
|
|
|
<%= auth_messages form %>
|
|
|
|
|
2024-02-09 15:29:31 +00: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-02-09 15:29:31 +00:00
|
|
|
<%= form.password_field :password, label: true, required: 'required' %>
|
2024-02-02 09:05:04 -06:00
|
|
|
|
2024-02-09 15:29:31 +00:00
|
|
|
<%= form.submit t('.submit') %>
|
2024-02-02 09:05:04 -06:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="mt-6 text-center">
|
2024-02-06 14:58:17 -03:00
|
|
|
<p class="text-sm text-gray-600"><%= t('.forgot_password') %> <%= link_to t('.reset_password'), new_password_reset_path, class: 'font-medium text-gray-600 hover:text-gray-400 transition' %></p>
|
2024-02-03 16:14:47 +00:00
|
|
|
</div>
|