blob: 25a66ea788889cb531cd231e1b87af898a78cd68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<p>
Resetting the users ([% uid %]) password will:
<ul>
<li>Change their password to a random string</li>
<li>Set the pwdReset attribute on their entry</li>
<li>Send an email containing a link to change their password to the following addresses:
<ul>
[% FOREACH mail IN mails %]
<li>[% mail %]</li>
[% END %]
</ul>
</ul>
<form method='post'>
<input type='hidden' name='txnid' value='[% txnid %]'>
<input type='submit' value='Reset'>
</form>
|