diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-02 21:18:17 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-02 21:18:17 +0000 |
commit | 15a6bef48416aa45d6ae5c76d33ad5e5d19cd553 (patch) | |
tree | 66b3093867e77a3a6308ceb26f50f71be128fb14 /includes/theme.inc | |
parent | 36ea1cf957fe03fa49df11481bdeaedf4787edde (diff) | |
download | brdo-15a6bef48416aa45d6ae5c76d33ad5e5d19cd553.tar.gz brdo-15a6bef48416aa45d6ae5c76d33ad5e5d19cd553.tar.bz2 |
<center></center> ==> <div align="center"></div>
Diffstat (limited to 'includes/theme.inc')
-rw-r--r-- | includes/theme.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/theme.inc b/includes/theme.inc index 5ba2daa10..ad2bbeebb 100644 --- a/includes/theme.inc +++ b/includes/theme.inc @@ -60,14 +60,14 @@ function theme_account($theme) { $theme->box(strtr(t("%a's configuration"), array("%a" => $user->userid)), "$content"); } else { - $output .= "<CENTER>\n"; + $output .= "<DIV ALIGN=\"center\">\n"; $output .= " <FORM ACTION=\"account.php?op=login\" METHOD=\"post\">\n"; $output .= " <B>". t("Username") .":</B><BR><INPUT NAME=\"userid\" SIZE=\"15\"><P>\n"; $output .= " <B>". t("Password") .":</B><BR><INPUT NAME=\"passwd\" SIZE=\"15\" TYPE=\"password\"><BR>\n"; $output .= " <INPUT TYPE=\"submit\" VALUE=\"". t("Login") ."\"><BR>\n"; $output .= " <A HREF=\"account.php\">". t("REGISTER") ."</A>\n"; $output .= " </FORM>\n"; - $output .= "</CENTER>\n"; + $output .= "</DIV>\n"; $theme->box(t("Login"), $output); } |