summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-20 09:59:27 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2006-11-20 09:59:27 +0000
commit7cfdb888e5cba93b05b1948e511c467bfa04033a (patch)
tree0eafca011fd6d28430ff2352565dcae58072f4c9
parent7b2206c1715255ae173653ccc6049b86a4feaff9 (diff)
increase field widths
-rw-r--r--IkiWiki/CGI.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/IkiWiki/CGI.pm b/IkiWiki/CGI.pm
index 65e6a2ae9..53237bcdb 100644
--- a/IkiWiki/CGI.pm
+++ b/IkiWiki/CGI.pm
@@ -151,11 +151,11 @@ sub cgi_signin ($$) { #{{{
decode_form_utf8($form);
- $form->field(name => "name", required => 0);
+ $form->field(name => "name", required => 0, size => 30);
$form->field(name => "do", type => "hidden");
$form->field(name => "password", type => "password", required => 0);
if ($config{openid}) {
- $form->field(name => "openid_url", label => "OpenID",
+ $form->field(name => "openid_url", label => "OpenID", size => 30,
comment => '('.
htmllink("", "", "OpenID", 1, 0, "What's this?")
.($config{openidsignup} ? " | <a href=\"$config{openidsignup}\">Get an OpenID</a>" : "")
@@ -364,7 +364,7 @@ sub cgi_prefs ($$) { #{{{
my $user_name=$session->param("name");
$form->field(name => "do", type => "hidden");
$form->field(name => "name", disabled => 1,
- value => $user_name, force => 1);
+ value => $user_name, force => 1, size => 30);
$form->field(name => "password", type => "password");
$form->field(name => "confirm_password", type => "password");
$form->field(name => "subscriptions", size => 50,