mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-06 14:05:20 +02:00
* Make forms more composable, opt-in to form builder * Remove unused method * Simpler money input controls * Add in new form styling to imports * Lint fixes * Small tweak of multi select styles
11 lines
328 B
Text
11 lines
328 B
Text
<%
|
|
header_title t(".title")
|
|
%>
|
|
|
|
<%= styled_form_with url: password_reset_path, class: "space-y-4" do |form| %>
|
|
<%= auth_messages form %>
|
|
|
|
<%= form.email_field :email, label: true, autofocus: false, autocomplete: "email", required: "required", placeholder: "you@example.com" %>
|
|
|
|
<%= form.submit t(".submit") %>
|
|
<% end %>
|