diff --git a/organize/README.txt b/organize/README.txt
index c80f403..c37d7f3 100644
--- a/organize/README.txt
+++ b/organize/README.txt
@@ -228,6 +228,23 @@ We need a principal for testing the login stuff:
>>> pwcView.update()
False
+Reset Password
+--------------
+
+Invalidates the user account by generating a new password. A mail ist sent to
+the email address of the person with a link for re-activating the account
+and enter a new password.
+
+ >>> data = {'loginName': u'dummy',
+ ... 'action': 'update'}
+
+ >>> request = TestRequest(form=data)
+
+ >>> from loops.organize.browser.member import PasswordReset
+ >>> pwrView = PasswordReset(menu, request)
+ >>> pwrView.update()
+ True
+
Pure Person-based Authentication
================================
diff --git a/organize/browser/configure.zcml b/organize/browser/configure.zcml
index e351efa..3548bed 100644
--- a/organize/browser/configure.zcml
+++ b/organize/browser/configure.zcml
@@ -45,6 +45,12 @@
class="loops.organize.browser.member.PasswordChange"
permission="zope.View" />
+
+