Hi,
I think I’m doing something wrong when using the "form." syntax.
I expect that the following will output one text field and one select field
[!WebLoginPE?
&type=`register`
®Type=`verify` ®isterTpl=`registerTpl`
&groups=`WebUsers`
&customFields=`firstName, selectTest`
&inputHandler=`First Name:firstName:firstName:text||Select Test:selectTest:selectTest:select:Select 1(Select 1),Select 2(Select 2)`
!]
[+wlpe.message+]
<div id="wlpeRegister">
<form id="wlpeRegisterForm" name="wlpeRegisterForm" action="[~[*id*]~]" method="POST">
<fieldset id="wlpeRegisterFieldset">
[+form.firstName+]
[+form.testSelect+]
</fieldset>
<fieldset id="wlpeRegisterButtonFieldset">
<button type="submit" id="wlpeRegisterButton" name="service" value="register">Register</button>
<button type="submit" id="wlpeRegisterCancelButton" name="service" value="cancel">Cancel</button>
</fieldset>
</form>
</div>
Shouldn’t [+form.firstName+] and [+form.testSelect+] output an input and a select field?
Thanks