diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-12-30 01:43:16 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-12-30 01:43:16 -0800 |
commit | cb6cca67db487271ce96b49289ada58691a2067d (patch) | |
tree | 003581386f08c392c03ea7757907fa7d0992d857 /fs_selfservice/FS-SelfService/cgi/login.html | |
parent | 6b4a2501a75964c864467a3bf85bbba039009049 (diff) |
self-service access for contacts, RT#25533
Diffstat (limited to 'fs_selfservice/FS-SelfService/cgi/login.html')
-rw-r--r-- | fs_selfservice/FS-SelfService/cgi/login.html | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/fs_selfservice/FS-SelfService/cgi/login.html b/fs_selfservice/FS-SelfService/cgi/login.html index 68f3ae465..65efd7bdb 100644 --- a/fs_selfservice/FS-SelfService/cgi/login.html +++ b/fs_selfservice/FS-SelfService/cgi/login.html @@ -15,25 +15,26 @@ <TABLE BGCOLOR="<%= $box_bgcolor || '#c0c0c0' %>" BORDER=0 CELLSPACING=2 CELLPADDING=0> -<TR> - <TH ALIGN="right">Username </TH> - <TD> - <INPUT TYPE="text" NAME="username" VALUE="<%= $username %>"><%= $single_domain ? '@'.$single_domain : '' %> - </TD> -</TR> - <%= if ( $single_domain ) { - $OUT .= qq(<INPUT TYPE="hidden" NAME="domain" VALUE="$single_domain">); + $OUT .= qq( + <TR> + <TH ALIGN="right">Username </TH> + <TD> + <INPUT TYPE="text" NAME="username" VALUE="$username">\@$single_domain + </TD> + </TR> + <INPUT TYPE="hidden" NAME="domain" VALUE="$single_domain"> + ); } else { $OUT .= qq( <TR> - <TH ALIGN="right">Domain </TH> + <TH ALIGN="right">Email address </TH> <TD> - <INPUT TYPE="text" NAME="domain" VALUE="$domain"> + <INPUT TYPE="text" NAME="email" VALUE="$email"> </TD> </TR> ); |