blob: 5a0104393f9de2b24f44e2d2d711873fa8e0252f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<HTML>
<HEAD>
<TITLE>Reset password</TITLE>
<%= $head %>
</HEAD>
<BODY BGCOLOR="<%= $body_bgcolor || '#eeeeee' %>">
<%= $body_header %>
<FONT SIZE=5>Reset password</FONT><BR><BR>
<FONT SIZE="+1" COLOR="#ff0000"><%= $error %></FONT>
<%= if (!$error) {
$selfurl =~ s/\?.*//;
$OUT .= "Your password has been changed. You can now <A HREF=\"$selfurl?agentnum=$agentnum\">log in</A>.";
}
%>
<%= $body_footer %>
|