# userswp/1.2.69/admin/views/html-admin-form-builder.php

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

- Page: https://pluginprobe.com/plugins/userswp/1.2.69/code/admin/views/html-admin-form-builder.php
- Raw: https://pluginprobe.com/plugins/userswp/1.2.69/raw/admin/views/html-admin-form-builder.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.69/code/admin/views/html-admin-form-builder.php#L10-L20`.

```php
<?php
/**
 * Admin View: Settings
 */
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

?>
<div class="wrap">
    <nav class="nav-tab-wrapper uwp-nav-tab-wrapper">
        <?php
        foreach ( $tabs as $name => $label ) {
            echo '<a href="' . esc_url( admin_url( 'admin.php?page=uwp_form_builder&tab=' . $name ) ) . '" class="nav-tab ' . ( $current_tab == $name ? 'nav-tab-active' : '' ) . '">' . esc_html( $label ) . '</a>';
            }
            do_action( 'uwp_settings_tabs' );
        ?>
    </nav>
    <h1 class="screen-reader-text"><?php echo esc_html( $tabs[ $current_tab ] ); ?></h1>
    <?php
        do_action( 'uwp_sections_' . $current_tab );
        do_action( 'uwp_settings_' . $current_tab );
        do_action( 'uwp_settings_tabs_' . $current_tab );
    ?>
</div>

```
