Sha256: 00abc42d7f4bcf8707bf12260cb68904c5eda1489ac4072b337a059a77fdad9a

Contents?: true

Size: 1 KB

Versions: 3

Compression:

Stored size: 1 KB

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

3 entries across 3 versions & 1 rubygems

Version Path
kaze-0.5.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.4.0 stubs/hotwire/app/views/auth/forgot_password.html.erb
kaze-0.3.0 stubs/hotwire/app/views/auth/forgot_password.html.erb