The Reset Password page allows a user to reset the password for their account. In most cases a link is added to the extranet login page which will direct users to the Reset Password page. To use the Reset Password page you must set the enablePasswordReset attribute of the membership provider to True and the Allow Password Reset property on the Delegation Settings page to Yes.
![]() |
The behavior of the Reset Password page is dictated by the Password Reset Template selected on the Delegation Settings page. |
![]() |
The password reset operation can not be used by accounts that have been locked out |
Using a Sample Login Page
The Extranet Collaboration Manager application provides several sample login pages which include a reset password link. These pages can be found at 'C:\Program Files\SharePoint Solutions\Extranet Collaboration Manager\Customizations\'.
- On your SharePoint Web-Front-End server, navigate to the C:\Program Files\SharePoint Solutions\Extranet Collaboration Manager\Customizations' directory.
- Copy login-layouts-pwdreset.asp (or any other sample login page)
- Paste the sample login page into the 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\12\TEMPLATE\LAYOUTS' directory.
- Rename the file to a user friendly name, suggested extlogin.aspx
- Open web.config file used by your Web Application, modify the loginUrl attribute of the authentication\forms tag.
- Save the web.config file
| Authorization Section Sample | Copy Code |
|---|---|
|
< authentication mode="Forms">< forms loginUrl="/_layouts/extlogin.aspx" /></ authentication> | |
