Hey all,
I could really use a second (or 3rd, or 4th!) pair of eyes on this one...
I’m using MODx 9.6.2 with the latest WebLoginPE beta (1.3.2 b1) from the vhollo branch here:
http://code.google.com/p/webloginpe/source/browse/branches/vhollo/
Everything seems to work fine in the password reset process until I try to load the link from the email. At that point, it simply ignores the activateTpl parameter and loads the loginFormTpl. Ideas anyone? Please share some of your genius! I’ve been stuck for hours with this.
Is no one else having this problem?
Here’s my snippet call, which is called on doc ID 60 (Site start):
[!WebLoginPE? &id=`memberLoginForm` &type=`simple` &liHomeId=`55` &loHomeId=`60` &loginFormTpl=`FormLoginPE` &successTpl=`LoggedInStatus` &activateTpl=`ActivateMe` !]
My activateTpl chunk:
[+wlpe.message+]
<div id="wlpeActivate">
<form id="wlpeActivateForm" name="wlpeActivateForm" action="[~[*id*]~]" method="post">
<fieldset id="wlpeActivateFieldset">
<input type="hidden" name="userid" value="[+request.userid+]" />
<input type="hidden" name="activationkey" value="[+request.activationkey+]" />
<label for="wlpeActivationPassword">Temporary password
<input type="text" id="wlpeActivationPassword" name="activationpassword" />
</label>
<label for="wlpeNewPassword">New password
<input type="password" id="wlpeNewPassword" name="newpassword" />
</label>
<label for="wlpeNewPasswordConfirm">Confirm new password
<input type="password" id="wlpeNewPasswordConfirm" name="newpassword.confirm" />
</label>
</fieldset>
<fieldset id="wlpeActivateButtonFieldset">
<button type="submit" id="wlpeActivateButton" name="service" value="activated">Activate</button>
</fieldset>
</form>
</div>