# fluent-community/2.8.0/app/Views/auth/login_form.php

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

- Page: https://pluginprobe.com/plugins/fluent-community/2.8.0/code/app/Views/auth/login_form.php
- Raw: https://pluginprobe.com/plugins/fluent-community/2.8.0/raw/app/Views/auth/login_form.php
- Modified: 2026-07-24T13:35:06+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/2.8.0/code/app/Views/auth/login_form.php#L10-L20`.

```php
<?php if (!defined('ABSPATH')) { exit;} // Exit if accessed directly ?>
<?php
/** @var array $settings @var array $defaults @var array $hiddenFields @var string $redirect */
$fluentCommunitySettings = $settings ?? [];
$fluentCommunityDefaults = $defaults ?? [];
$fluentCommunityHiddenFields = $hiddenFields ?? [];
$fluentCommunityRedirect = $redirect ?? '';
?>
<div id="fcom_user_onboard_wrap" class="fcom_user_onboard">
    <?php do_action('fluent_community/before_auth_form_header', 'login'); ?>
    <div class="fcom_onboard_header">
        <div class="fcom_onboard_header_title">
            <h2>
                <?php echo esc_html($fluentCommunitySettings['title']); ?>
            </h2>
            <p>
                <?php echo wp_kses_post($fluentCommunitySettings['description']); ?>
            </p>
        </div>
    </div>
    <div class="fcom_onboard_body">
        <div class="fcom_onboard_form">

            <?php
            \FluentCommunity\Modules\Auth\AuthHelper::nativeLoginForm([
                'echo'    => true,
                'form_id' => 'fcom_user_login_form',
                'value_remember' => true,
                'redirect' => !empty($redirect_to) ? $redirect_to : '',
                'value_username' => $fluentCommunityDefaults ? \FluentCommunity\Framework\Support\Arr::get($fluentCommunityDefaults, 'email') : '',
                'label_log_in' => $fluentCommunitySettings['button_label'],
            ], $fluentCommunityHiddenFields);
            ?>

            <div class="fcom_spaced_divider">
                <?php if (!empty($signupUrl)): ?>
                    <div class="fcom_alt_auth_text">
                        <?php esc_html_e('Don\'t have an account?', 'fluent-community'); ?>
                        <a href="<?php echo esc_url($signupUrl); ?>">
                            <?php esc_html_e('Signup', 'fluent-community'); ?>
                        </a>
                    </div>
                <?php endif; ?>
                <p class="fcom_reset_pass_text">
                    <a href="<?php echo esc_url(wp_lostpassword_url($fluentCommunityRedirect)); ?>">
                        <?php esc_html_e('Lost your password?', 'fluent-community'); ?>
                    </a>
                </p>
            </div>
        </div>
    </div>
</div>

```
