1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-27 09:09:41 +02:00
Maybe/app/views/sessions/new.html.erb

16 lines
565 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">
<%= link_to t(".forgot_password"), new_password_reset_path, class: "font-medium text-sm text-gray-900 hover:underline transition" %>
</div>