mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 07:39:39 +02:00
* Bump min supported date to 20 years * Add basic onboarding * User onboarding * Complete onboarding flow * Cleanup, add user profile update test
15 lines
565 B
Text
15 lines
565 B
Text
<%
|
|
header_title t(".title")
|
|
%>
|
|
|
|
<%= 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") %>
|
|
|
|
<%= form.password_field :password, label: t(".password"), required: "required" %>
|
|
|
|
<%= form.submit t(".submit") %>
|
|
<% 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>
|