Is it possible to put a LOGIN form at the top of the OCST page? I've tried copying the code from the other login pages, but it did not work.
We'd like to have customers go straight to this page, bypassing the OINF screen, and either entering billing/shiping info or logging in - rather than choosing whether or not to enter info or login or checkout without account. Then use phosphormedia's EasyAccount module at the end to encourage account signup.
Does anyone have the code snippet for making the form function on this page? Below is what I tried
Thanks!
We'd like to have customers go straight to this page, bypassing the OINF screen, and either entering billing/shiping info or logging in - rather than choosing whether or not to enter info or login or checkout without account. Then use phosphormedia's EasyAccount module at the end to encourage account signup.
Does anyone have the code snippet for making the form function on this page? Below is what I tried
Code:
<h3>Sign In</h3> <mvt:if expr="l.settings:messages:error_message_count"> <div class="error-message"> <mvt:foreach iterator="error" array="messages:error_messages"> &mvt:error; </mvt:foreach> </div> <mvt:elseif expr="l.settings:messages:information_message_count"> <div class="information-message"> <mvt:foreach iterator="message" array="messages:information_messages"> &mvt:message; </mvt:foreach> </div> </mvt:if> <div class="form_row"> Username OR Email: <mvt:if expr="('Invalid Password' CIN g.Error_Messages) AND g.Customer_Email_Login"> <input type="text" size="28" name="Customer_Login" value="&mvte:global:Customer_Email_Login;"> <mvt:else> <input type="text" size="28" name="Customer_Login" value="&mvte:global:Customer_Login;"> </mvt:if> </div> <div class="form_row"> <label for="Customer_Password">Password:</label><input type="password" name="Customer_Password" id="Customer_Password" class="textfield logn-input" /> </div> <div class="clear"></div> <div class="sign-in-buttons"><mvt:item name="buttons" param="login" /></div> <div class="forgot-password"><a href="javascript:document.forms[ 'logn' ].elements[ 'Action' ].value = 'EMPW'; document.forms[ 'logn' ].submit();">Forgot password?</a></div>
Comment