mirror of
https://github.com/we-promise/sure.git
synced 2026-04-09 07:14:47 +00:00
22 lines
1.2 KiB
Plaintext
22 lines
1.2 KiB
Plaintext
<%
|
|
header_title t('.title')
|
|
%>
|
|
|
|
<%= form_with url: password_reset_path(token: params[:token]), html: {class: 'space-y-6'} do |form| %>
|
|
<%= auth_messages form %>
|
|
|
|
<div class="relative border border-gray-100 bg-gray-25 rounded-xl focus-within:bg-white focus-within:shadow focus-within:opacity-100">
|
|
<%= form.label :password, class: 'p-4 pb-0 block text-sm font-medium text-gray-700' %>
|
|
<%= form.password_field :password, required: 'required', class: 'p-4 pt-1 bg-transparent border-none opacity-50 focus:outline-none focus:ring-0 focus-within:opacity-100 w-full' %>
|
|
</div>
|
|
|
|
<div class="relative border border-gray-100 bg-gray-25 rounded-xl focus-within:bg-white focus-within:shadow focus-within:opacity-100">
|
|
<%= form.label :password_confirmation, class: 'p-4 pb-0 block text-sm font-medium text-gray-700' %>
|
|
<%= form.password_field :password_confirmation, required: 'required', class: 'p-4 pt-1 bg-transparent border-none opacity-50 focus:outline-none focus:ring-0 focus-within:opacity-100 w-full' %>
|
|
</div>
|
|
|
|
<div>
|
|
<%= form.submit t('.submit'), class: 'flex justify-center w-full px-4 py-3 text-sm font-medium text-white bg-black rounded-xl hover:bg-black focus:outline-none focus:ring-2 focus:ring-gray-200 shadow' %>
|
|
</div>
|
|
<% end %>
|