Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter ronithr

    (@ronithr)

    My Site link is https://www.devkot.com/

    Thread Starter ronithr

    (@ronithr)

    Hi Caimin,

    Everything displaying correctly as per the design. But input fields are not editable.
    Please check this link http://ualockerroom.staging.wpengine.com/ and click on REQUEST A NEW ACCOUNT. You will get a popup which contains a form. In that form, input fields are not working. Please have a look and advise. I see that there is no issue from the gravity forms and the popup maker. Because it works in the page if i embed.

    thanks

    • This reply was modified 8 years, 4 months ago by ronithr.
    Thread Starter ronithr

    (@ronithr)

    Hi Caimin,

    Thanks for your update. I am using the below code in widget_out.php. I have tried using contact form 7 also. But facing the same issue. You can have a look at once in this link http://ualockerroom.staging.wpengine.com/

    <div class=”lwa lwa-default”><?php //class must be here, and if this is a template, class name should be that of template directory ?>
    <form class=”login-form lwa-form”
    method=”post”
    role=”form”
    id=”login-form”
    action=”<?php echo esc_attr(LoginWithAjax::$url_login); ?>”>
    <span class=”lwa-status”></span>
    <div class=”form-group has-feedback lwa-username-input”>
    <input type=”text”
    name=”log”
    id=”username”
    value=””
    placeholder=”username”
    class=”form-control”
    pattern=”^[a-zA-Z][a-zA-Z0-9-_\.]{1,20}$”
    required />
    <span class=”form-icon form-icon-name”></span>
    </div>
    <div class=”form-group has-feedback lwa-password-input”>
    <input type=”password”
    name=”pwd”
    id=”password”
    value=””
    placeholder=”password”
    class=”form-control”
    required />
    <span class=”form-icon form-icon-password”></span>
    </div>
    <h5> Terms & Conditions of Use </h5>
    <div class=”termsconditions” id=”style-1″>
    <p class=”termsred”>
    By [entering my user name and password and clicking “submit,”] I agree that:
    </p>
    <p class=”termscontent”>
    If I am either (a) an employee of Under Armour, Inc. or any of Under Armour, Inc.’s related entities (individually and collectively, “UA”), or (b) a contractor or other third party subject to a written obligation of confidentiality to UA, I shall treat all information, drawings, and other data viewed or otherwise accessed through this site and any modification or derivatives thereof that I make of such information, drawings and other data, as the confidential and proprietary information (“Confidential Information”) of UA in accordance with the terms of my confidentiality (or similarly named) agreement with, or obligation to, UA (a “Confidentiality Agreement”).
    </p>
    <p class=”termscontent”>
    If I am not either an employee of UA or a contractor or other third party subject to an obligation of confidentiality to UA pursuant to a Confidentiality Agreement, I shall preserve and protect the confidentiality of, and not disclose, download or make any copies of without UA’s prior written approval, the Confidential Information, and I shall use the Confidential Information solely to the extent necessary to provide any agreed upon services to UA. Unless sooner directed by UA, I shall destroy all copies of Confidential Information in my possession upon completion of the agreed upon services and, upon UA’s request, certify such destruction of all physical and electronic forms of the Confidential Information in my possession or control. I further agree to take all commercially reasonable efforts to comply with the foregoing obligations.
    </p>
    <p class=”termscontent”>
    If I do not agree to the applicable foregoing terms, I shall neither <span style=”color:#FF0000;”>[enter my user name and/or password or click “submit,”] </span> or otherwise view or access, or attempt to view or access, any Confidential Information.
    </p>
    </div>

    <div class=”line”></div>

    <div class=”form-group”>
    <button type=”submit”
    id=”but-log”
    class=”btn btn-submit”
    name=”wp-submit”
    disabled=”disabled”>
    <?php esc_attr_e(‘SUBMIT’, ‘login-with-ajax’); ?>
    </button>
    <input type=”hidden” name=”lwa_profile_link”
    value=”<?php echo esc_attr($lwa_data[‘profile_link’]); ?>” />
    <input type=”hidden” name=”login-with-ajax” value=”login” />
    <?php if( !empty($lwa_data[‘redirect’]) ): ?>
    <input type=”hidden” name=”redirect_to”
    value=”<?php echo esc_url($lwa_data[‘redirect’]); ?>” />
    <?php endif; ?>
    </div>

    <div class=”form-group”>
    <div class=”remember”>
    <label class=”remembertext”>
    <?php esc_html_e( ‘Remember Me’,’login-with-ajax’ ) ?>
    </label>
    <input name=”rememberme”
    type=”checkbox”
    class=”lwa-rememberme”
    value=”forever”
    id=”rememberme” />

    <?php if( !empty($lwa_data[‘remember’]) ): ?>
    </div>
    <div class=”line”></div>
    <p>
    <a class=”ual-js-forgot-link”
    href=”<?php echo esc_attr(LoginWithAjax::$url_remember); ?>”
    title=”<?php esc_attr_e(‘Password Lost and Found’,’login-with-ajax’) ?>”>
    <?php esc_attr_e(‘Change/Reset password’,’login-with-ajax’) ?>
    <span></span>

    </p>

    <?php endif; ?>

    <?php if ( get_option(‘users_can_register’) && !empty($lwa_data[‘registration’]) ) : ?>
    <p>

    class=”lwa-links-register ual-js-register-link”>
    <?php esc_html_e(‘Register’,’login-with-ajax’) ?>

    </p>
    <?php endif; ?>
    </div>

    </form>

    <?php if( !empty($lwa_data[‘remember’]) ): ?>
    <form class=”login-form lwa-remember hidden-block ual-js-forgot-form”
    method=”post”
    id=”login-form”
    role=”form”
    action=”<?php echo esc_attr(LoginWithAjax::$url_remember) ?>”>
    <span class=”lwa-status”></span>
    <div class=”form-group has-feedback lwa-remember-email”>
    <input type=”text”
    name=”user_login”
    placeholder=”enter username or email”
    value=””
    class=”form-control lwa-user-remember”
    required />
    <span class=”form-icon form-icon-name”></span>
    <?php do_action(‘lostpassword_form’); ?>
    </div>
    <div class=”form-group”>
    <button type=”

    class=”btn btn-submit lwa-button-remember”
    name=”wp-submit”>
    <?php esc_attr_e(“GET NEW PASSWORD”, ‘login-with-ajax’); ?>
    </button>
    <input type=”hidden” name=”login-with-ajax” value=”remember” />
    </div>

    </form>
    <?php endif; ?>

    <?php if( get_option(‘users_can_register’) && !empty($lwa_data[‘registration’]) ): ?>
    <div class=”lwa-register lwa-register-default ual-js-register-form login-form”>
    <h4><?php esc_html_e(‘Register For This Site’,’login-with-ajax’) ?></h4>
    <p>
    <em class=”lwa-register-tip”>
    <?php esc_html_e(‘A password will be e-mailed to you.’,’login-with-ajax’) ?>

    </p>
    <form class=”lwa-register-form” action=”<?php echo esc_attr(LoginWithAjax::$url_register); ?>” method=”post”>
    <span class=”lwa-status”></span>
    <div class=”form-group has-feedback lwa-username”>
    <input type=”text”
    name=”user_login”
    id=”user_login”
    value=””
    placeholder=”username”
    class=”form-control”
    tabindex=”10″
    required />
    <span class=”form-icon form-icon-name”></span>
    </div>
    <div class=”form-group has-feedback lwa-email”>
    <input type=”text”
    name=”user_email”
    id=”user_email”
    value=””
    placeholder=”email”
    class=”form-control input”
    tabindex=”20″
    required />
    <span class=”form-icon form-icon-mail”></span>
    </div>
    <div class=”form-group”>
    <?php do_action(‘register_form’); ?>
    <?php do_action(‘lwa_register_form’); ?>
    <button type=”submit”
    id=”wp-submit”
    class=”btn btn-submit button-primary”
    name=”wp-submit”
    tabindex=”100″>
    <?php esc_attr_e(‘REGISTER’, ‘login-with-ajax’); ?>
    </button>
    <input type=”hidden” name=”login-with-ajax” value=”register” />
    </div>

    <div class=”form-group”>
    <button type=”button”
    id=”but-test”
    class=”btn btn-submit”
    name=”wp-submit”
    onclick = “popmake-8685″
    >
    <?php esc_attr_e(‘New User Request’, ‘login-with-ajax’); ?>
    </button>

    </div>

    </form>
    </div>
    <?php endif; ?>
    </div>
    <div class=”line”></div>
    <div class=”form-group”>
    <p>

    Request a New Account

    </p>
    </div>

    • This reply was modified 8 years, 5 months ago by ronithr.
    Thread Starter ronithr

    (@ronithr)

    Hi Caimin,

    This is how i embedded the code under the template called login.php.

    <div class=”form-group”>
    <p>

    Request a New Account

    </p>
    </div>

    Also please find the screenshot for reference:
    http://ualockerroom.staging.wpengine.com/wp-content/uploads/2017/12/ajaxwithlogin.jpg

    thanks,
    Ronith

Viewing 4 replies - 1 through 4 (of 4 total)