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

16 lines
626 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
%>
<%= styled_form_with url: sessions_path, class: "space-y-4" do |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: t(".password"), 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>