diff options
author | tardo <tardo@nagi-fanboi.net> | 2007-09-25 18:40:48 -0400 |
---|---|---|
committer | tardo <tardo@nagi-fanboi.net> | 2007-09-25 18:40:48 -0400 |
commit | b76faddb10fb53266e4f934a58edf30ba7935025 (patch) | |
tree | ced58337bcbc070c67fd1fc659bfb9001246b9bc /web/html/account.php | |
parent | 1769285c36f333cc06be91332984686f64a74b88 (diff) | |
parent | 7c7685ce82f1779f6f991533df7f5e6d6ac8fe21 (diff) | |
download | aurweb-b76faddb10fb53266e4f934a58edf30ba7935025.tar.xz |
Merge branch 'testing' of git://git.mattal.com/aur into test
Fixed regressions.
Diffstat (limited to 'web/html/account.php')
-rw-r--r-- | web/html/account.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/web/html/account.php b/web/html/account.php index fd9cc61..3d98171 100644 --- a/web/html/account.php +++ b/web/html/account.php @@ -13,6 +13,10 @@ html_header(); # print out the HTML header # Main page processing here # +echo "<div class=\"pgbox\">\n"; +echo " <div class=\"pgboxtitle\"><span class=\"f3\">".__("Accounts")."</span></div>\n"; +echo " <div class=\"pgboxbody\">\n"; + if (isset($_COOKIE["AURSID"])) { # visitor is logged in # @@ -148,6 +152,9 @@ if (isset($_COOKIE["AURSID"])) { } } +echo " </div>"; +echo "</div>"; + html_footer("\$Id$"); # vim: ts=2 sw=2 noet ft=php ?> |