mirror of
https://github.com/we-promise/sure.git
synced 2026-04-07 14:31:25 +00:00
16 lines
588 B
Plaintext
16 lines
588 B
Plaintext
<%
|
|
header_title t(".title")
|
|
%>
|
|
|
|
<%= styled_form_with url: sessions_path, class: "space-y-4", data: { turbo: false } 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-primary hover:underline transition" %>
|
|
</div>
|