Hey,
I’m trying to get the exp:member:login form to use secure action, however whatever parameter I set in the tag, nothing seems to work.
Here is my template code:
{exp:member:login_form return="{site_ssl_url}members" id="login" action="https://getyourrideon.ca/"}
<table class="form" border="0" cellspacing="0" cellpadding="0">
<tr>
<th scope="row"><label for="username">Email Address</label></th>
<td><input class="text" type="text" id="username" name="username" size="25" /></td>
</tr>
<tr>
<th scope="row"><label for="password">Password <span class="forgot"><a href="http://{site_ssl_url}members/reset-password">(Forgot password?)</a></span></label></th>
<td><input class="text" id="password" type="password" name="password" size="25" /></td>
</tr>
<tr>
<th scope="row"></th>
<td><button type="submit" value="submit" id="btn-submit" ></td>
</tr>
</table>
{/exp:member:login_form}I have this exact same code running on another site, and when the form gets rendered out it actually uses an https:// url. No clue why it isn’t doing it here.