]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/passwordauth.pm
Revert passwordauth fieldset and doc to avoid 2.0 regressions; need to re-evaluate...
[git.ikiwiki.info.git] / IkiWiki / Plugin / passwordauth.pm
index dac649bc86c81f38a8e6ae1386c880449524bb15..d1a965dc889c144f62a01bcba826ae192ec37b10 100644 (file)
@@ -21,12 +21,8 @@ sub formbuilder_setup (@) { #{{{
        my $cgi=$params{cgi};
 
        if ($form->title eq "signin" || $form->title eq "register") {
-               my %fieldset = ();
-               if ($form->title eq "signin") {
-                       $fieldset{"fieldset"} = gettext("Log in with")." ".htmllink("", "", "passwordauth", noimageinline => 1);
-               }
-               $form->field(name => "name", required => 0, size => 50, %fieldset);
-               $form->field(name => "password", type => "password", required => 0, %fieldset);
+               $form->field(name => "name", required => 0, size => 50);
+               $form->field(name => "password", type => "password", required => 0);
                
                if ($form->submitted eq "Register" || $form->submitted eq "Create Account") {
                        $form->field(name => "confirm_password", type => "password");