mirror of
https://github.com/we-promise/sure.git
synced 2026-04-10 07:44:48 +00:00
16 lines
626 B
Plaintext
16 lines
626 B
Plaintext
<%
|
|
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">
|
|
<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>
|