# fluent-community/1.0.95/app/Views/auth/user_invitation.php

FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS &amp; Online Courses, version 1.0.95. 43 lines.

- Page: https://pluginprobe.com/plugins/fluent-community/1.0.95/code/app/Views/auth/user_invitation.php
- Raw: https://pluginprobe.com/plugins/fluent-community/1.0.95/raw/app/Views/auth/user_invitation.php
- Modified: 2024-11-07T12:38:44+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/fluent-community/1.0.95/code/app/Views/auth/user_invitation.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
<?php
$formBuilder = new \FluentCommunity\App\Services\FormBuilder($formFields);
?>
<div id="fcom_user_onboard_wrap" class="fcom_user_onboard">
    <div class="fcom_onboard_header">
        <div class="fcom_onboard_header_title">
            <h2><?php echo esc_html($title); ?></h2>
            <p><?php echo esc_html($description); ?></p>
        </div>
    </div>
    <div class="fcom_onboard_body">
        <div class="fcom_onboard_form">
            <form method="post" id="fcom_user_registration_form">
                <div class="fcom_form_main_fields">
                    <?php $formBuilder->render(); ?>
                    <?php
                    foreach ($hiddenFields as $name => $value) {
                        echo "<input type='hidden' name='".esc_attr($name)."' value='".esc_attr($value)."'>";
                    }
                    ?>
                    <div class="fcom_form-group">
                        <div class="fcom_form_input">
                            <button type="submit" class="fcom_btn fcom_btn_primary">
                                <?php echo wp_kses_post($signupBtnText); ?>
                            </button>
                        </div>
                    </div>
                </div>
            </form>

            <?php if(!empty($loginUrl)): ?>
            <div class="fcom_spaced_divider">
                <?php _e('Already have an account?', 'fluent-community'); ?>
                <a href="<?php echo esc_url($loginUrl); ?>">
                    <?php _e('Login', 'fluent-community'); ?>
                </a>
            </div>
            <?php endif; ?>
        </div>
    </div>
</div>

```
