diff options
author | ivan <ivan> | 2002-04-10 13:42:49 +0000 |
---|---|---|
committer | ivan <ivan> | 2002-04-10 13:42:49 +0000 |
commit | 0b65ce59c7d2ee712389c27954382274ddf718a5 (patch) | |
tree | ed8d8fb079faf656fe93e5f68d98e095500c03ef /fs_signup/FS-SignupClient/cgi/signup.html | |
parent | fd597aef277c522889a849d78dc7dcae67d00d95 (diff) |
bulk checkin from working on the road:
- use msgcat for more error messages - should be all things that would come3
back from the signup server normally now
- signup server: don't display access number <SELECT> if there's none or one
- signup_server-realtime config option to run billing for signup server
signups immediately
- signup server: pkg available to success templates, better documentation on
success templates
- httemplate/edit/msgcat.cgi fields are properly sticky on errors
- httemplate/edit/process/msgcat.cgi - don't update identical fields
Diffstat (limited to 'fs_signup/FS-SignupClient/cgi/signup.html')
-rwxr-xr-x | fs_signup/FS-SignupClient/cgi/signup.html | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/fs_signup/FS-SignupClient/cgi/signup.html b/fs_signup/FS-SignupClient/cgi/signup.html index 5d2f2d9c9..6c601410c 100755 --- a/fs_signup/FS-SignupClient/cgi/signup.html +++ b/fs_signup/FS-SignupClient/cgi/signup.html @@ -148,13 +148,11 @@ Contact Information </TR> <TR> <TD ALIGN="right">Password</TD> - <TD><INPUT TYPE="password" NAME="_password" VALUE="<%= $password %>"> - (blank to generate)</TD> + <TD><INPUT TYPE="password" NAME="_password" VALUE="<%= $password %>"></TD> </TR> <TR> <TD ALIGN="right">Re-enter Password</TD> - <TD><INPUT TYPE="password" NAME="_password2" VALUE="<%= $password2 %>"> - </TD> + <TD><INPUT TYPE="password" NAME="_password2" VALUE="<%= $password2 %>"></TD> </TR> <%= if ( $init_data->{'security_phrase'} ) { @@ -169,10 +167,14 @@ ENDOUT $OUT .= '<INPUT TYPE="hidden" NAME="sec_phrase" VALUE="">'; } %> -<TR> - <TD ALIGN="right">Access number</TD> - <TD><%= popselector($popnum) %></TD> -</TR> +<%= + if ( scalar(@$pops) ) { + $OUT .= '<TR><TD ALIGN="right">Access number</TD><TD>'. + popselector($popnum). '</TD></TR>'; + } else { + $OUT .= popselector($popnum); + } +%> </TABLE> <BR><BR><INPUT TYPE="submit" VALUE="Signup"> </FORM></BODY></HTML> |