Sha256: 6791899c82e7ff8268182ba820fe9d50261afb063c986fface522fb0b389900e

Contents?: true

Size: 986 Bytes

Versions: 12

Compression:

Stored size: 986 Bytes

Contents

<div class="mb-4 text-sm text-gray-600 dark:text-gray-400">
  Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.
</div>
<!-- Session Status -->
<%= render(AuthSessionStatusComponent.new({ class: "mb-4", status: flash[:status] })) %>
<%= form_with model: @form, url: password_request_path do |form| %>
  <!-- Email Address -->
  <div>
    <%= render(InputLabelComponent.new({ for: "email", value: "Email" })) %>
    <%= render(TextInputComponent.new({ id: "email", class: "block mt-1 w-full", type: "email", name: "email", value: @form.email, required: true, autofocus: true, autocomplete: "username" })) %>
    <%= render(InputErrorComponent.new({ class: "mt-2", message: @form.error_messages[:email] })) %>
  </div>
  <div class="flex items-center justify-end mt-4">
    <%= render(PrimaryButtonComponent.new) do %>
      Email Password Reset Link
    <% end %>
  </div>
<% end %>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
kaze-0.17.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.16.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.15.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.14.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.13.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.12.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.11.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.10.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.9.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.8.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.7.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.6.0 stubs/hotwire/app/views/auth/forgot_password.html.erb