# userswp/1.2.68/templates/change.php

UsersWP – Front-end login form, User Registration, User Profile &amp; Members Directory plugin for WP, version 1.2.68. 18 lines.

- Page: https://pluginprobe.com/plugins/userswp/1.2.68/code/templates/change.php
- Raw: https://pluginprobe.com/plugins/userswp/1.2.68/raw/templates/change.php
- Modified: 2024-03-13T13:47:28+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/userswp/1.2.68/code/templates/change.php#L10-L20`.

```php
<?php do_action('uwp_template_before', 'change'); ?>
    <div class="uwp-content-wrap">
        <div class="uwp-login">
            <div class="uwp-lf-icon"><i class="fas fa-sync fa-fw"></i></div>
            <?php do_action('uwp_template_form_title_before', 'change'); ?>
            <h2><?php
                $form_title = !empty($args['form_title']) ? esc_attr__($args['form_title'], 'userswp') : __('Change', 'userswp');
                echo apply_filters('uwp_template_form_title', $form_title, 'change'); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
                ?></h2>
            <?php do_action('uwp_template_display_notices', 'change'); ?>
            <form class="uwp-change-form uwp_form" method="post">
                <?php do_action('uwp_template_fields', 'change'); ?>
                <input name="uwp_change_submit" value="<?php echo esc_attr__( 'Submit', 'userswp' ); ?>" type="submit"><br>
            </form>
            <div class="uwp-footer-link uwp-changepsw"><a rel="nofollow" href="<?php echo esc_url( uwp_get_page_link('account') ); ?>"><?php echo uwp_get_option("account_link_title") ? esc_html( uwp_get_option("account_link_title") ) : esc_html__( 'Account', 'userswp' ); ?></a> <a style="float: right" href="<?php echo esc_url( uwp_get_page_link('profile') ); ?>"><?php echo uwp_get_option("profile_link_title") ? esc_html( uwp_get_option("profile_link_title") ) : esc_html__( 'Profile', 'userswp' ); ?></a></div>
        </div>
    </div>
<?php do_action('uwp_template_after', 'change'); ?>
```
