We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 5452
    • 41 Posts
    I have found my problem!!!

    When I customized my login form template( webloginpe.templates.php ), I changed something that I would think wouldn’t matter much. BUT OBVIOUSLY IT HAS!

    This is what I changed.

    For the login form template, I took out the <button type="submit" id="wlpeLoginButton" name="service" value="login">Login</button>

    and used this instead... <input type="image" src="../images/login-btn.jpg" align="middle" id="wlpeLoginButton" name="service" value="login">

    And that’s keeping it from registering a login PERIOD.

    Any suggestions how I can use my own image instead of the button, and get a login?

    All the best,
    ~Slim
      • 25803 ☆ A M B ☆
      • 721 Posts
      You can try adding this:

      <input type="image" src="../images/login-btn.jpg"   onclick="document.forms.yourformname.submit();" align="middle" id="wlpeLoginButton" name="service" value="login" />


      Or alternately, try the button tag instead of input, as in:

      <button type="submit"  id="wlpeLoginButton" name="service" value="login"><img src="../images/login-btn.jpg" alt="Submit" /></button>