EKM Tag: [ekm:changepassword]
This tag is used to output a change password form on your shop. This allows logged in customers to change their account password. It could be used to display the form on a specific webpage or in a modal.
- Tag Information
[ekm:changepassword][/ekm:changepassword]
[ekm:changepassword]
output_start='<div class="change-password">';
output_item='
<h4>[title]</h4>
<p>[message]</p>
<fieldset>
<legend>Change Account Password</legend>
<div> <label>[old_password_text]</label> [old_password] </div>
<div> <label>[new_password_text]</label> [new_password] </div>
<div>[button]</div>
</fieldset>
';
output_end='</div>';
on_success_goto='/password-changed-12-w.asp';
[/ekm:changepassword]
output_start='<div class="change-password">';
Define any HTML you want to output before the change password form is output.
output_item='';
Define any HTML you want to surround elements in the change password form as well as the order you wish them to be displayed in.
output_end='</div>';
Define any HTML you want to output after the change password form is output.
on_success_goto='';
Define the URL to your own custom confirmation page. By default the user will be presented with the page the form is currently on.