1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-05 13:35:21 +02:00
Maybe/app/views/sessions/new.html.erb

18 lines
617 B
Text
Raw Normal View History

2024-02-02 09:05:04 -06:00
<%
header_title t(".title")
2024-02-02 09:05:04 -06:00
%>
<%= form_with url: session_path do |form| %>
<%= auth_messages form %>
<%= 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
<%= form.password_field :password, label: true, required: "required" %>
2024-02-02 09:05:04 -06:00
<%= form.submit t(".submit") %>
2024-02-02 09:05:04 -06:00
<% end %>
<div class="mt-6 text-center">
<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>
</div>