Frequently Asked Questions

Mar 29, 2024 - 06:18am

 [F] Frequently Asked Questions  / Operational Questions  /

How can I Set Up Password Verification for New Registrations?

Rate This FAQ
 (Not yet rated)

Created On: 7 Dec 1999 11:13 am
Last Edited: 10 Feb 2005 12:00 am

Question Printer Friendly

When new users register, I'd like them to enter their password twice for verification purposes.

Answer

Put %% macro register %% from standard.tpl into webx.tpl, and add:

<tr><td>Retype password: </td<<td><input name=passwordCheck type=password size=30 maxlength=50 value="%% editPassword %%"></td></tr>%%nop%%

below the two normal "Choose a password" dialogs.

Then also create:

%% macro registerProcessFilter %%
%% if form.password != form.passwordCheck %%
<html>Passwords do not match!</html>
%% endif %%
%% endmacro %%

Finally Reset the Cache