Hi guys,
We have a problem with the password reset on our solution. After the user changes the password, the confirmation mail is not sent. Are there any additional settings required?
Also, how can we get the actual password, as the tag DWOldPassword mentioned in the documentation (http://templates.dynamicweb.com/TemplateTags/Dynamicweb-template-tags/Module-tags/Extranet/Intranet/Login/DWOldPassword.aspx) doesn't return nything.
Thanks
This is our form
<form name="UserManagementEditForm" action='@GetValue("UserManagement:User.EditUrl")' method="post" enctype="multipart/form-data">
<input type="hidden" name="UserManagementForm" value="1">
<input type="hidden" id="UserManagementForm.DeleteImage" name="UserManagementForm.DeleteImage">
<input type="hidden" id="oldPassword" value='@GetValue( "DWOldPassword") />
<div class="user_edit_fields">
<div class="row">
<div class="col-xs-2">@Translate("changePassword", "Parola actuala")</div>
<div class="col-xs-10"><input name="UserManagement_Form_OldPassword" type="password" id="UserManagement_Form_OldPassword" autocomplete="off" /></div>
</div>
<div class="row">
<div class="col-xs-2">@Translate("newPassword", "Parola noua")</div>
<div class="col-xs-10"><input name="UserManagement_Form_NewPassword" type="password" id="UserManagement_Form_NewPassword" autocomplete="off" /></div>
</div>
<div class="row">
<div class="col-xs-2">@Translate("confirmPassword", "Confirmati parola")</div>
<div class="col-xs-10"><input name="UserManagement_Form_NewPasswordConfirm" type="password" id="UserManagement_Form_NewPasswordConfirm" autocomplete="off" /></div>
</div>
<div class="row">
<div class="col-xs-2"> </div>
<div class="col-xs-10">
<input type="submit" id="submitter" value='@Translate("changeInfo", "Modificati datele")' class="button-green" />
</div>
</div>
</div>
</form>