I have an HTML login form in my website in which the user enters some credentials and they get sent to another website.
Here is the form:
<form action="http://dashboard.babylonholiday.com/reseller/auth/" method="post" id="login_form">
When the credentials are correct, the user gets sent to the other website and logins in successfully. However, when they enter wrong information, they still get sent to the other website and there it displays wrong username and password.
Now, my question is, can I make an error message show in my website when the user enters wrong information instead of redirecting to other website?