diff options
author | ivan <ivan> | 2002-04-05 23:51:18 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-04-05 23:51:18 +0000 |
commit | 87af741da0dd5f6a76bbb566b4d6c54cd5b15315 (patch) | |
tree | d7c594b3e74bcea1e78beef56150ddf51ba24934 /httemplate/edit | |
parent | ee037398ef051cca986f799c52e52c0114f897c9 (diff) |
- add message catalog table & beginning of web interface
- add security_phrase and conf option to svc_acct.pm
- random other stuff
Diffstat (limited to 'httemplate/edit')
-rwxr-xr-x | httemplate/edit/svc_acct.cgi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/httemplate/edit/svc_acct.cgi b/httemplate/edit/svc_acct.cgi index 723c91c29..540d04c38 100755 --- a/httemplate/edit/svc_acct.cgi +++ b/httemplate/edit/svc_acct.cgi @@ -122,6 +122,15 @@ print &ntable("#cccccc",2), <<END; </TR> END +if ( $conf->exists('security_phrase') ) { + print <<END; + <TR><TD ALIGN="right">Security phrase</TD> + <TD><INPUT TYPE="text" NAME="sec_phrase" VALUE="$sec_phrase" SIZE=32> + (for forgotten passwords)</TD> + </TD> +END +} + #domain my $domsvc = $svc_acct->domsvc || 0; if ( $part_svc->part_svc_column('domsvc')->columnflag eq 'F' ) { |