# 404-solution/trunk/includes/html/setupWizardModal.html

404 Solution, version trunk. 89 lines.

- Page: https://pluginprobe.com/plugins/404-solution/trunk/code/includes/html/setupWizardModal.html
- Raw: https://pluginprobe.com/plugins/404-solution/trunk/raw/includes/html/setupWizardModal.html
- Modified: 2026-06-23T05:55:18+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/404-solution/trunk/code/includes/html/setupWizardModal.html#L10-L20`.

```html
<div id="abj404-setup-wizard" class="abj404-setup-overlay">
    <div class="abj404-setup-modal">
        <form method="post" action="">
            {nonce_field}

            <div class="abj404-setup-header">
                <h2>{welcome_heading}</h2>
                <button type="button" id="abj404-setup-close" class="abj404-setup-close" title="{close_label}">&times;</button>
            </div>

            <div class="abj404-setup-content">
                <p class="abj404-setup-intro">
                    {intro_primary} {intro_secondary}
                </p>

                <div class="abj404-setup-question">
                    <h3>{q1_heading}</h3>
                    <div class="abj404-setup-options">
                        <label class="abj404-setup-option">
                            <input type="radio" name="abj404_setup_q1" value="redirect"{q1_redirect_checked}>
                            <span class="abj404-setup-option-text">
                                <span class="abj404-setup-option-label">{q1_redirect_label}</span>
                                <span class="abj404-setup-option-desc">{q1_redirect_desc}</span>
                            </span>
                        </label>
                        <label class="abj404-setup-option">
                            <input type="radio" name="abj404_setup_q1" value="default"{q1_default_checked}>
                            <span class="abj404-setup-option-text">
                                <span class="abj404-setup-option-label">{q1_default_label}</span>
                                <span class="abj404-setup-option-desc">{q1_default_desc}</span>
                            </span>
                        </label>
                    </div>
                </div>

                <div class="abj404-setup-question">
                    <h3>{q2_heading}</h3>
                    <div class="abj404-setup-options">
                        <label class="abj404-setup-option">
                            <input type="radio" name="abj404_setup_q2" value="yes"{q2_yes_checked}>
                            <span class="abj404-setup-option-text">
                                <span class="abj404-setup-option-label">{q2_yes_label}</span>
                                <span class="abj404-setup-option-desc">{q2_yes_desc}</span>
                            </span>
                        </label>
                        <label class="abj404-setup-option">
                            <input type="radio" name="abj404_setup_q2" value="no"{q2_no_checked}>
                            <span class="abj404-setup-option-text">
                                <span class="abj404-setup-option-label">{q2_no_label}</span>
                                <span class="abj404-setup-option-desc">{q2_no_desc}</span>
                            </span>
                        </label>
                    </div>
                </div>

                <div class="abj404-setup-question">
                    <h3>{q3_heading}</h3>
                    <div class="abj404-setup-options">
                        <label class="abj404-setup-option">
                            <input type="radio" name="abj404_setup_q3" value="yes"{q3_yes_checked}>
                            <span class="abj404-setup-option-text">
                                <span class="abj404-setup-option-label">{q3_yes_label}</span>
                                <span class="abj404-setup-option-desc">{q3_yes_desc}</span>
                            </span>
                        </label>
                        <label class="abj404-setup-option">
                            <input type="radio" name="abj404_setup_q3" value="no"{q3_no_checked}>
                            <span class="abj404-setup-option-text">
                                <span class="abj404-setup-option-label">{q3_no_label}</span>
                                <span class="abj404-setup-option-desc">{q3_no_desc}</span>
                            </span>
                        </label>
                    </div>
                </div>
            </div>

            <div class="abj404-setup-footer">
                <button type="button" id="abj404-setup-skip" class="abj404-setup-skip">
                    {skip_label}
                </button>
                <input type="hidden" name="abj404_setup_wizard_action" value="save">
                <button type="submit" class="button abj404-setup-primary">
                    {save_label}
                </button>
            </div>
        </form>
    </div>
</div>

```
