File: password_form.cgi

package info (click to toggle)
usermin 1.110-3.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 12,716 kB
  • ctags: 1,844
  • sloc: perl: 43,940; sh: 715; makefile: 181
file content (43 lines) | stat: -rwxr-xr-x 1,566 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/local/bin/perl
# password_form.cgi
# Display the form that allows users to change their passwords at login time

$ENV{'MINISERV_INTERNAL'} || die "Can only be called by miniserv.pl";
require './web-lib.pl';
&init_config();
&ReadParse();
&header(undef, undef, undef, undef, 1, 1);

print "<center>\n";
print "<h3>$text{'password_expired'}</h3><p>\n";

print "$text{'password_prefix'}\n";
print "<form action=$gconfig{'webprefix'}/password_change.cgi method=post>\n";
print "<input type=hidden name=user value='",&html_escape($in{'user'}),"'>\n";
print "<input type=hidden name=pam value='$in{'pam'}'>\n";

print "<table border width=40%>\n";
print "<tr $tb> <td><b>$text{'password_header'}</b></td> </tr>\n";
print "<tr $cb> <td align=center><table cellpadding=3>\n";

print "<tr> <td><b>$text{'password_user'}</b></td>\n";
print "<td><tt>$in{'user'}</tt></td> </tr>\n";

print "<tr> <td><b>$text{'password_old'}</b></td>\n";
print "<td><input name=old size=20 type=password></td> </tr>\n";

print "<tr> <td><b>$text{'password_new1'}</b></td>\n";
print "<td><input name=new1 size=20 type=password></td> </tr>\n";
print "<tr> <td><b>$text{'password_new2'}</b></td>\n";
print "<td><input name=new2 size=20 type=password></td> </tr>\n";

print "<tr> <td colspan=2 align=center><input type=submit ",
      "value='$text{'password_ok'}'>\n";
print "<input type=reset value='$text{'password_clear'}'><br>\n";
print "</td> </tr>\n";
print "</table></td></tr></table><p>\n";
print "<hr>\n";
print "</form></center>\n";
print "$text{'password_postfix'}\n";
&footer();