actually, let's not use a fieldset label at all here, and use the

"login with openid" as the input field label
master
joey 2007-04-30 03:49:35 +00:00
parent 007dd1648b
commit b07bba87bf
1 changed files with 6 additions and 2 deletions

View File

@ -28,10 +28,14 @@ sub formbuilder_setup (@) { #{{{
my $cgi=$params{cgi};
if ($form->title eq "signin") {
# This avoids it displaying a redundant label for the
# OpenID fieldset.
$form->fieldsets("OpenID");
$form->field(
name => "openid_url",
label => "OpenID",
fieldset => gettext("Log in with")." ".htmllink("", "", "OpenID", noimageinline => 1),
label => gettext("Log in with")." ".htmllink("", "", "OpenID", noimageinline => 1),
fieldset => "OpenID",
size => 30,
comment => ($config{openidsignup} ? " | <a href=\"$config{openidsignup}\">".gettext("Get an OpenID")."</a>" : "")
);