diff options
author | Loui Chang <louipc.ist@gmail.com> | 2007-09-27 06:06:56 +0200 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2007-09-27 06:06:56 +0200 |
commit | d2134f7637279592b11e4c0f778445bd347b0804 (patch) | |
tree | 38ab2013be237835ceff41f468d3dde2438e3bef /web/html/account.php | |
parent | e8ae65abf62e2d85d4baf406fb651e2aa5814d3b (diff) | |
parent | d1c9422095b9981f608b75f0b78e412983ba7aff (diff) | |
download | aur-d2134f7637279592b11e4c0f778445bd347b0804.tar.gz aur-d2134f7637279592b11e4c0f778445bd347b0804.tar.xz |
Merge commit 'origin/testing'
Yeah I actually want to work from testing.
Conflicts:
web/lib/pkgfuncs.inc
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
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 fd9cc617..3d981715 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 ?> |