diff options
author | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-03-09 18:11:28 +0000 |
---|---|---|
committer | Kjartan Mannes <kjartan@2.no-reply.drupal.org> | 2002-03-09 18:11:28 +0000 |
commit | 4ec8a9323f47c3cabc9e50aca07c334c6497c4ee (patch) | |
tree | 873e945efa3e28d629b9592971ed5700ddbd4fc6 /modules/user/user.module | |
parent | 52c9f263324e6014c6b0770d2bc7afeb6cd03b48 (diff) | |
download | brdo-4ec8a9323f47c3cabc9e50aca07c334c6497c4ee.tar.gz brdo-4ec8a9323f47c3cabc9e50aca07c334c6497c4ee.tar.bz2 |
- made some design changes to the user block.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r-- | modules/user/user.module | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/user/user.module b/modules/user/user.module index 385a25109..78c233300 100644 --- a/modules/user/user.module +++ b/modules/user/user.module @@ -469,13 +469,13 @@ function user_block() { $block[0]["subject"] = t("Log in"); $output .= "<div align=\"center\">\n"; - $output .= " <form action=\"module.php?mod=user&op=login\" method=\"post\">\n"; - $output .= " <b>". t("Username") .":</b><br /><input name=\"edit[name]\" size=\"15\" /><p />\n"; - $output .= " <b>". t("Password") .":</b><br /><input name=\"edit[pass]\" size=\"15\" type=\"password\" /><br />\n"; - $output .= form_checkbox(t("Remember me"), "remember_me", 1, 0); - $output .= " <input type=\"submit\" value=\"". t("Log in") ."\" /><br />\n"; + $output .= "<form action=\"module.php?mod=user&op=login\" method=\"post\">\n"; + $output .= "<b>". t("Username") .":</b><br /><input name=\"edit[name]\" size=\"15\" /><br />\n"; + $output .= "<b>". t("Password") .":</b><br /><input name=\"edit[pass]\" size=\"15\" type=\"password\" /><br />\n"; + $output .= "<input name=\"edit[remember_me]\" type=\"checkbox\" />". t("Remember me") ."<br />\n"; + $output .= "<input type=\"submit\" value=\"". t("Log in") ."\" /><br />\n"; if (variable_get("account_register", 1)) $output .= " <a href=\"module.php?mod=user\" title=\"". t("Create a new user account.") ."\">". t("REGISTER") ."</a>\n"; - $output .= " </form>\n"; + $output .= "</form>\n"; $output .= "</div>\n"; } $block[0]["content"] = $output; |