I'm trying to have users login on from my website to a third party platform that we use. I'm using the code below, however, when submitted, it's taking me to the .aspx page with no data pre-filled or anything. I want it to post the credentials and log the user in. Is it because I'm posting to an .aspx page?
<form method="POST" action="othersite.aspx">
<fieldset>
<dl>
<dt>
<label for="txtUserName">Email:</label>
</dt>
<dd>
<input name="email" type="text" id="email" class="fieldSignin"/>
</dd>
<dt>
<label for="txtPassword">Password:</label>
</dt>
<dd>
<input name="password" type="password" id="password" class="fieldSignin"/>
</dd>
</dl>
</fieldset>
<div class="formButtons">
<input type="submit" name="login" value="Sign in" id="login" class="buttonPrimary" />
</div>
Any assistance is appreciated.