defmodule PyrauiWeb.DocsLive.PasswordStrengthMeterDocs do use PyrauiWeb, :html def render(assigns) do ~H"""
Password Strength

Password Strength Meter

Live strength feedback with suggestions. Attach the meter to your password field—no extra wiring needed.

Basic Usage

    
    <.password_strength_meter id="password-input" field={@form[:password]} />
    
            

With Suggestions

    
    <.password_strength_meter id="signup-password" field={@form[:password]} show_suggestions={true} />
    
            
""" end end