Call 1-888-670-1652

 Spire CoreDB Connect Error (2002) Connection timed out

Creating a Password Recovery Link

In order to include a link on the login page that allows users to recover their passwords, you can make use of the sys:lost-password tag.

First, open the login page's "Source" editor window and place you cursor in the place on the page where you would like the password recovery link to appear (somewhere between the <sys:login> and </sys:login> tags).

!NEED SCREENSHOT OF PROPER PLACEMENT AND SELECTING LOST-PASSWORD FROM RMS TOOLKIT SECTION OF SYSTEM MENU

Once placed, click to open the "System" drop-down menu, and, from the "RMS Toolkit" section, select "lost-password" so that the following tag appears on the page in the location where you placed your tag:

<sys:lost-password disable-https="1">
<aml:enter>
Enter your e-mail here <input name='e-mail' type='text'/>
<input type='submit'/>
</aml:enter>

<aml:sent>
E-mail with confirmation link was sent to you.
</aml:sent>

<aml:confirm>
<h1>Changing the password for user <account/></h1>
Enter new password: <input name='password1' type='password'/><br/>
Re-type password: <input name='password2' type='password'/><br/>
<input type='submit'/>
</aml:confirm>

<aml:done>
Password was succesfuly changed. Have a nice day.
</aml:done>
</sys:lost-password>

The tag will create a field in which users can enter their email addresses in order to receive a password confirmation email that will allow them to change their passwords.

In order to customize the text that will appear in the field, as well as in the confirmation email, simply replace the tag's default text ("Enter your e-mail here," "Email with confirmation link was sent to you," "Changing the password for user," "Enter new password," "Re-type password," or "Password was successfully changed. Have a nice day") with whatever text you prefer.

!NEED SCREENSHOT OF EXAMPLE PASSWORD RECOVERY FORM