HTML 4.01 and XHTML 1.0 compliance changes

git-svn-id: file:///svn/phpbb/trunk@767 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2001-07-31 14:06:06 +00:00
parent 8b84c5a970
commit b3366f1e35
7 changed files with 70 additions and 93 deletions

View file

@ -73,8 +73,6 @@ else
$l_login_logout = $lang['Login']; $l_login_logout = $lang['Login'];
} }
$l_last_visit = $lang['You_last_visit'];
$s_last_visit = create_date($board_config['default_dateformat'], $userdata['session_last_visit'], $board_config['default_timezone']); $s_last_visit = create_date($board_config['default_dateformat'], $userdata['session_last_visit'], $board_config['default_timezone']);
// //
@ -100,7 +98,7 @@ while($row = $db->sql_fetchrow($result))
{ {
if($row['user_allow_viewonline'] || $userdata['user_level'] == ADMIN) if($row['user_allow_viewonline'] || $userdata['user_level'] == ADMIN)
{ {
$userlist_ary[] = "<a href=\"" . append_sid("profile." . $phpEx . "?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . "\">" . $row['username'] . "</a>"; $userlist_ary[] = "<a href=\"" . append_sid("profile." . $phpEx . "?mode=viewprofile&amp;" . POST_USERS_URL . "=" . $row['user_id']) . "\">" . $row['username'] . "</a>";
} }
else else
{ {
@ -171,6 +169,8 @@ $template->assign_vars(array(
"META_INFO" => $meta_tags, "META_INFO" => $meta_tags,
"TOTAL_USERS_ONLINE" => $lang['There'] . " $l_is_are $logged_visible_online " . $lang['Registered'] . " $l_r_user_s, $logged_hidden_online " . $lang['Hidden'] . " $l_h_user_s ". $lang['and'] . " $guests_online " . $lang['Guest'] . " $l_g_user_s " . $lang['online'], "TOTAL_USERS_ONLINE" => $lang['There'] . " $l_is_are $logged_visible_online " . $lang['Registered'] . " $l_r_user_s, $logged_hidden_online " . $lang['Hidden'] . " $l_h_user_s ". $lang['and'] . " $guests_online " . $lang['Guest'] . " $l_g_user_s " . $lang['online'],
"LOGGED_IN_USER_LIST" => $userlist, "LOGGED_IN_USER_LIST" => $userlist,
"PRIVATE_MESSAGE_INFO" => $l_privmsgs_text,
"LAST_VISIT_DATE" => $s_last_visit,
"L_USERNAME" => $lang['Username'], "L_USERNAME" => $lang['Username'],
"L_PASSWORD" => $lang['Password'], "L_PASSWORD" => $lang['Password'],
@ -203,8 +203,7 @@ $template->assign_vars(array(
"L_MESSAGE" => $lang['Message'], "L_MESSAGE" => $lang['Message'],
"L_BY" => $lang['by'], "L_BY" => $lang['by'],
"L_LOGIN_LOGOUT" => $l_login_logout, "L_LOGIN_LOGOUT" => $l_login_logout,
"L_PRIVATE_MESSAGE_INFO" => $l_privmsgs_text, "L_LAST_VISIT" => $lang['You_last_visit'],
"L_LAST_VISIT" => $l_last_visit,
"U_INDEX" => append_sid("index.".$phpEx), "U_INDEX" => append_sid("index.".$phpEx),
"U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"), "U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"),
@ -221,7 +220,6 @@ $template->assign_vars(array(
"S_TIMEZONE" => $lang['All_times'] . " " . $lang[$board_config['default_timezone']], "S_TIMEZONE" => $lang['All_times'] . " " . $lang[$board_config['default_timezone']],
"S_LOGIN_ACTION" => append_sid("login.$phpEx"), "S_LOGIN_ACTION" => append_sid("login.$phpEx"),
"S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"), "S_JUMPBOX_ACTION" => append_sid("viewforum.$phpEx"),
"S_LAST_VISIT_DATE" => $s_last_visit,
"S_CURRENT_TIME" => create_date($board_config['default_dateformat'], time(), $board_config['default_timezone']), "S_CURRENT_TIME" => create_date($board_config['default_dateformat'], time(), $board_config['default_timezone']),
"T_HEAD_STYLESHEET" => $theme['head_stylesheet'], "T_HEAD_STYLESHEET" => $theme['head_stylesheet'],
@ -235,12 +233,21 @@ $template->assign_vars(array(
"T_TR_COLOR1" => "#".$theme['tr_color1'], "T_TR_COLOR1" => "#".$theme['tr_color1'],
"T_TR_COLOR2" => "#".$theme['tr_color2'], "T_TR_COLOR2" => "#".$theme['tr_color2'],
"T_TR_COLOR3" => "#".$theme['tr_color3'], "T_TR_COLOR3" => "#".$theme['tr_color3'],
"T_TR_CLASS1" => $theme['tr_class1'],
"T_TR_CLASS2" => $theme['tr_class2'],
"T_TR_CLASS3" => $theme['tr_class3'],
"T_TH_COLOR1" => "#".$theme['th_color1'], "T_TH_COLOR1" => "#".$theme['th_color1'],
"T_TH_COLOR2" => "#".$theme['th_color2'], "T_TH_COLOR2" => "#".$theme['th_color2'],
"T_TH_COLOR3" => "#".$theme['th_color3'], "T_TH_COLOR3" => "#".$theme['th_color3'],
"T_TH_CLASS1" => $theme['th_class1'],
"T_TH_CLASS2" => $theme['th_class2'],
"T_TH_CLASS3" => $theme['th_class3'],
"T_TD_COLOR1" => "#".$theme['td_color1'], "T_TD_COLOR1" => "#".$theme['td_color1'],
"T_TD_COLOR2" => "#".$theme['td_color2'], "T_TD_COLOR2" => "#".$theme['td_color2'],
"T_TD_COLOR3" => "#".$theme['td_color3'], "T_TD_COLOR3" => "#".$theme['td_color3'],
"T_TD_CLASS1" => $theme['td_class1'],
"T_TD_CLASS2" => $theme['td_class2'],
"T_TD_CLASS3" => $theme['td_class3'],
"T_FONTFACE1" => $theme['fontface1'], "T_FONTFACE1" => $theme['fontface1'],
"T_FONTFACE2" => $theme['fontface2'], "T_FONTFACE2" => $theme['fontface2'],
"T_FONTFACE3" => $theme['fontface3'], "T_FONTFACE3" => $theme['fontface3'],
@ -250,10 +257,9 @@ $template->assign_vars(array(
"T_FONTCOLOR1" => "#".$theme['fontcolor1'], "T_FONTCOLOR1" => "#".$theme['fontcolor1'],
"T_FONTCOLOR2" => "#".$theme['fontcolor2'], "T_FONTCOLOR2" => "#".$theme['fontcolor2'],
"T_FONTCOLOR3" => "#".$theme['fontcolor3'], "T_FONTCOLOR3" => "#".$theme['fontcolor3'],
"T_IMG1" => $theme['img1'], "T_SPAN_CLASS1" => $theme['span_class1'],
"T_IMG2" => $theme['img2'], "T_SPAN_CLASS2" => $theme['span_class2'],
"T_IMG3" => $theme['img3'], "T_SPAN_CLASS3" => $theme['span_class3'])
"T_IMG4" => $theme['img4'])
); );
// //

View file

@ -37,7 +37,7 @@ $template->set_filenames(array(
$template->assign_vars(array( $template->assign_vars(array(
"PHPBB_VERSION" => "2.0-alpha", "PHPBB_VERSION" => "2.0-alpha",
"ADMIN_LINK" => $admin_link)); "ADMIN_LINK" => $admin_link . "<br />"));
$template->pparse("overall_footer"); $template->pparse("overall_footer");

View file

@ -413,8 +413,8 @@ function append_sid($url)
if(!empty($SID) && !eregi("sid=", $url)) if(!empty($SID) && !eregi("sid=", $url))
{ {
$url = ereg_replace("[&?]+$", "", $url); // $url = ereg_replace("[&?]+$", "", $url);
$url .= ( (strpos($url, "?") != false) ? "&" : "?" ) . $SID; $url .= ( (strpos($url, "?") != false) ? "&amp;" : "?" ) . $SID;
} }
return($url); return($url);

View file

@ -140,21 +140,6 @@ if($total_categories = $db->sql_numrows($q_categories))
AND u.user_id = ug.user_id AND u.user_id = ug.user_id
ORDER BY aa.forum_id, g.group_id, u.user_id"; ORDER BY aa.forum_id, g.group_id, u.user_id";
/* $sql = "SELECT f.forum_id, g.group_name, g.group_id, u.user_id, u.username
FROM " . AUTH_ACCESS_TABLE . " aa, " . FORUMS_TABLE . " f, " . USER_GROUP_TABLE . " ug, " . USERS_TABLE . " u, " . GROUPS_TABLE . " g
WHERE aa.forum_id = f.forum_id
AND aa.auth_mod = " . TRUE . "
AND (
( ug.user_id = aa.user_id
AND u.user_id = ug.user_id
AND g.group_id = 0 )
OR
( ug.group_id = aa.group_id
AND u.user_id = ug.user_id
AND g.group_id <> 0 )
)
AND g.group_id = ug.group_id
ORDER BY f.forum_id, g.group_id, u.user_id";*/
if(!$q_forum_mods = $db->sql_query($sql)) if(!$q_forum_mods = $db->sql_query($sql))
{ {
message_die(GENERAL_ERROR, "Could not query forum moderator information", "", __LINE__, __FILE__, $sql); message_die(GENERAL_ERROR, "Could not query forum moderator information", "", __LINE__, __FILE__, $sql);
@ -204,7 +189,7 @@ if($total_categories = $db->sql_numrows($q_categories))
"L_FORUM_LOCKED" => $lang['Forum_is_locked'], "L_FORUM_LOCKED" => $lang['Forum_is_locked'],
"U_NEWEST_USER_PROFILE" => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$newest_uid")) "U_NEWEST_USER_PROFILE" => append_sid("profile.$phpEx?mode=viewprofile&amp;" . POST_USERS_URL . "=$newest_uid"))
); );
// //
@ -216,6 +201,8 @@ if($total_categories = $db->sql_numrows($q_categories))
{ {
$cat_id = $category_rows[$i]['cat_id']; $cat_id = $category_rows[$i]['cat_id'];
$count = 0;
for($j = 0; $j < $total_forums; $j++) for($j = 0; $j < $total_forums; $j++)
{ {
$forum_id = $forum_rows[$j]['forum_id']; $forum_id = $forum_rows[$j]['forum_id'];
@ -234,16 +221,16 @@ if($total_categories = $db->sql_numrows($q_categories))
if($forum_rows[$j]['forum_status'] == FORUM_LOCKED) if($forum_rows[$j]['forum_status'] == FORUM_LOCKED)
{ {
$folder_image = "<img src=\"" . $images['folder_locked'] . "\">"; $folder_image = "<img src=\"" . $images['folder_locked'] . "\" alt=\"" . $lang['Forum_locked'] . "\" />";
} }
else if($userdata['session_start'] == $userdata['session_time']) else if($userdata['session_start'] == $userdata['session_time'])
{ {
$folder_image = ($forum_rows[$i]['post_time'] > $userdata['session_last_visit']) ? "<img src=\"" . $images['folder_new'] . "\">" : "<img src=\"" . $images['folder'] . "\">"; $folder_image = ($forum_rows[$i]['post_time'] > $userdata['session_last_visit']) ? "<img src=\"" . $images['folder_new'] . "\" alt=\"" . $lang['New_posts'] . "\" />" : "<img src=\"" . $images['folder'] . "\" alt=\"" . $lang['No_new_posts'] . "\" />";
} }
else else
{ {
$folder_image = ($forum_rows[$i]['post_time'] > $userdata['session_time'] - 300) ? "<img src=\"" . $images['folder_new'] . "\">" : "<img src=\"" . $images['folder'] . "\">"; $folder_image = ($forum_rows[$i]['post_time'] > $userdata['session_time'] - 300) ? "<img src=\"" . $images['folder_new'] . "\" alt=\"" . $lang['New_posts'] . "\" />" : "<img src=\"" . $images['folder'] . "\" alt=\"" . $lang['No_new_posts'] . "\" />";
} }
$posts = $forum_rows[$j]['forum_posts']; $posts = $forum_rows[$j]['forum_posts'];
@ -262,9 +249,9 @@ if($total_categories = $db->sql_numrows($q_categories))
$last_post_time = create_date($board_config['default_dateformat'], $forum_rows[$j]['post_time'], $board_config['default_timezone']); $last_post_time = create_date($board_config['default_dateformat'], $forum_rows[$j]['post_time'], $board_config['default_timezone']);
$last_post = $last_post_time . "<br />by "; $last_post = $last_post_time . "<br />by ";
$last_post .= "<a href=\"" . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $forum_rows[$j]['user_id']) . "\">" . $last_poster . "</a>&nbsp;"; $last_post .= "<a href=\"" . append_sid("profile.$phpEx?mode=viewprofile&amp;" . POST_USERS_URL . "=" . $forum_rows[$j]['user_id']) . "\">" . $last_poster . "</a>&nbsp;";
$last_post .= "<a href=\"" . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=" . $forum_rows[$j]['topic_last_post_id']) . "#" . $forum_rows[$j]['topic_last_post_id'] . "\"><img src=\"" . $images['icon_latest_reply'] . "\" width=\"20\" height=\"11\" border=\"0\" alt=\"" . $lang['View_latest_post'] . "\"></a>"; $last_post .= "<a href=\"" . append_sid("viewtopic.$phpEx?" . POST_POST_URL . "=" . $forum_rows[$j]['topic_last_post_id']) . "#" . $forum_rows[$j]['topic_last_post_id'] . "\"><img src=\"" . $images['icon_latest_reply'] . "\" border=\"0\" alt=\"" . $lang['View_latest_post'] . "\" /></a>";
} }
else else
{ {
@ -283,14 +270,14 @@ if($total_categories = $db->sql_numrows($q_categories))
$moderators_links .= ", "; $moderators_links .= ", ";
} }
if(!($mod_count % 2) && $mod_count != 0) if( !($mod_count % 2) && $mod_count != 0 )
{ {
$moderators_links .= "<br />"; $moderators_links .= "<br />";
} }
if( $forum_mods_single_user[$forum_id][$mods]) if( $forum_mods_single_user[$forum_id][$mods])
{ {
$moderators_links .= "<a href=\"" . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $forum_mods_id[$forum_id][$mods]) . "\">" . $forum_mods_name[$forum_id][$mods] . "</a>"; $moderators_links .= "<a href=\"" . append_sid("profile.$phpEx?mode=viewprofile&amp;" . POST_USERS_URL . "=" . $forum_mods_id[$forum_id][$mods]) . "\">" . $forum_mods_name[$forum_id][$mods] . "</a>";
} }
else else
{ {
@ -305,30 +292,24 @@ if($total_categories = $db->sql_numrows($q_categories))
$moderators_links = "&nbsp;"; $moderators_links = "&nbsp;";
} }
// $row_color = "#" . ( ( !($count%2) ) ? $theme['td_color1'] : $theme['td_color2'] );
// This should end up in the template using IF...ELSE...ENDIF $row_class = ( !($count%2) ) ? $theme['td_class1'] : $theme['td_class2'];
//
if($row_color == "#DDDDDD")
{
$row_color = "#CCCCCC";
}
else
{
$row_color = "#DDDDDD";
}
$template->assign_block_vars("catrow.forumrow", array( $template->assign_block_vars("catrow.forumrow", array(
"ROW_COLOR" => $row_color,
"ROW_CLASS" => $row_class,
"FOLDER" => $folder_image, "FOLDER" => $folder_image,
"FORUM_NAME" => stripslashes($forum_rows[$j]['forum_name']), "FORUM_NAME" => stripslashes($forum_rows[$j]['forum_name']),
"FORUM_DESC" => stripslashes($forum_rows[$j]['forum_desc']), "FORUM_DESC" => stripslashes($forum_rows[$j]['forum_desc']),
"ROW_COLOR" => $row_color,
"POSTS" => $forum_rows[$j]['forum_posts'], "POSTS" => $forum_rows[$j]['forum_posts'],
"TOPICS" => $forum_rows[$j]['forum_topics'], "TOPICS" => $forum_rows[$j]['forum_topics'],
"LAST_POST" => $last_post, "LAST_POST" => $last_post,
"MODERATORS" => $moderators_links, "MODERATORS" => $moderators_links,
"U_VIEWFORUM" => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id&" . $forum_rows[$j]['forum_posts'])) "U_VIEWFORUM" => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id&amp;" . $forum_rows[$j]['forum_posts']))
); );
$count++;
} }
else if($viewcat != -1) else if($viewcat != -1)
{ {

View file

@ -9,12 +9,12 @@
<tr> <tr>
<td class="tablebg"><table width="100%" cellpadding="3" cellspacing="1" border="0"> <td class="tablebg"><table width="100%" cellpadding="3" cellspacing="1" border="0">
<tr> <tr>
<th>&nbsp;</td> <th>&nbsp;</th>
<th>&nbsp;{L_FORUM}&nbsp;</td> <th>&nbsp;{L_FORUM}&nbsp;</th>
<th>&nbsp;{L_TOPICS}&nbsp;</td> <th>&nbsp;{L_TOPICS}&nbsp;</th>
<th>&nbsp;{L_POSTS}&nbsp;</td> <th>&nbsp;{L_POSTS}&nbsp;</th>
<th>&nbsp;{L_LASTPOST}&nbsp;</td> <th>&nbsp;{L_LASTPOST}&nbsp;</th>
<th>&nbsp;{L_MODERATOR}&nbsp;</td> <th>&nbsp;{L_MODERATOR}&nbsp;</th>
</tr> </tr>
<!-- BEGIN catrow --> <!-- BEGIN catrow -->
<tr> <tr>
@ -23,11 +23,11 @@
<!-- BEGIN forumrow --> <!-- BEGIN forumrow -->
<tr> <tr>
<td class="row1" align="center" valign="middle" width="7%">{catrow.forumrow.FOLDER}</td> <td class="row1" align="center" valign="middle" width="7%">{catrow.forumrow.FOLDER}</td>
<td class="row2"><span class="gen"><a href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a></span><br><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td> <td class="row2"><span class="gen"><a href="{catrow.forumrow.U_VIEWFORUM}">{catrow.forumrow.FORUM_NAME}</a></span><br /><span class="gensmall">{catrow.forumrow.FORUM_DESC}</span></td>
<td class="row1" width="5%" align="center" valign="middle"><span class="gen">{catrow.forumrow.TOPICS}</span></td> <td class="row1" width="5%" align="center" valign="middle"><span class="gen">{catrow.forumrow.TOPICS}</span></td>
<td class="row2" width="5%" align="center" valign="middle"><span class="gen">{catrow.forumrow.POSTS}</span></td> <td class="row2" width="5%" align="center" valign="middle"><span class="gen">{catrow.forumrow.POSTS}</span></td>
<td class="row1" width="15%" align="center" valign="middle"><span class="gensmall">{catrow.forumrow.LAST_POST}</span></td> <td class="row1" width="15%" align="center" valign="middle"><span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
<td class="row2" width="5%" align="center" valign="middle"><span class="gensmall">{catrow.forumrow.MODERATORS}</span></td></tr> <td class="row2" width="5%" align="center" valign="middle"><span class="gensmall">{catrow.forumrow.MODERATORS}</span></td>
</tr> </tr>
<!-- END forumrow --> <!-- END forumrow -->
<!-- END catrow --> <!-- END catrow -->
@ -35,15 +35,15 @@
<td class="cat" colspan="6"><span class="cattitle"><b><a href="{U_PRIVATEMSGS}">{L_PRIVATEMSGS}</a></b></span></td> <td class="cat" colspan="6"><span class="cattitle"><b><a href="{U_PRIVATEMSGS}">{L_PRIVATEMSGS}</a></b></span></td>
</tr> </tr>
<tr> <tr>
<td class="row1" width="7%" align="center" valign="middle"><img src="images/mailbox.gif"></td> <td class="row1" width="7%" align="center" valign="middle"><img src="images/mailbox.gif" alt="{L_PRIVATEMSGS}" /></td>
<td class="row2" colspan="5" align="left"><span class="gen">{L_PRIVATE_MESSAGE_INFO}</span></td> <td class="row2" colspan="5" align="left"><span class="gen">{PRIVATE_MESSAGE_INFO}</span></td>
</tr> </tr>
<tr> <tr>
<td class="cat" colspan="6"><span class="cattitle"><b><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></b></span></td> <td class="cat" colspan="6"><span class="cattitle"><b><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></b></span></td>
</tr> </tr>
<tr> <tr>
<td class="row1" width="7%" align="center" valign="middle"><img src="images/whosonline.gif"></td> <td class="row1" width="7%" align="center" valign="middle"><img src="images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<td class="row2" colspan="5" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}</span><br><span class="gen">{LOGGED_IN_USER_LIST}</span></td> <td class="row2" colspan="5" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}</span><br /><span class="gen">{LOGGED_IN_USER_LIST}</span></td>
</tr> </tr>
</table></td> </table></td>
</tr> </tr>
@ -53,23 +53,16 @@
<tr> <tr>
<td align="left" valign="top"><table cellspacing="0" border="0"> <td align="left" valign="top"><table cellspacing="0" border="0">
<tr> <tr>
<td width="30" align="center"><img src="images/folder_new.gif"></td> <td width="30" align="center"><img src="images/folder_new.gif" alt="{L_NEWPOSTS}" /></td>
<td><span class="gensmall">{L_NEWPOSTS}</span></td> <td><span class="gensmall">{L_NEWPOSTS}</span></td>
<td>&nbsp;&nbsp;</td> <td>&nbsp;&nbsp;</td>
<td width="30" align="center"><img src="images/folder.gif"></td> <td width="30" align="center"><img src="images/folder.gif" alt="{L_NONEWPOSTS}" /></td>
<td><span class="gensmall">{L_NONEWPOSTS}</span></td> <td><span class="gensmall">{L_NONEWPOSTS}</span></td>
<td>&nbsp;&nbsp;</td> <td>&nbsp;&nbsp;</td>
<td width="30" align="center"><img src="images/folder_lock.gif"></td> <td width="30" align="center"><img src="images/folder_lock.gif" alt="{L_FORUM_LOCKED}" /></td>
<td><span class="gensmall">{L_FORUM_LOCKED}</span></td> <td><span class="gensmall">{L_FORUM_LOCKED}</span></td>
</tr> </tr>
</table></td> </table></td>
<td align="right" valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td> <td align="right" valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td>
</tr> </tr>
</table> </table>
<!-- div align="center"><table width="98%" cellpadding="1" cellspacing="0" border="0">
<tr>
<td bgcolor="{T_TH_COLOR1}"><table border="0" cellpadding="3" cellspacing="1" width="100%">
</table></td>
</tr>
</table></div -->

View file

@ -1,8 +1,7 @@
<br clear="all" /> <br clear="all" />
<div align="center"> <div align="center"><span class="gensmall">{ADMIN_LINK}</span><br />
<span class="gensmall">{ADMIN_LINK}</span>
<br clear="all" /><br />
<!-- <!--
Please note that the following copyright notice Please note that the following copyright notice
@ -19,10 +18,7 @@
The phpBB Group : 2001 The phpBB Group : 2001
//--> //-->
<span class="gensmall">Powered by phpBB 2.0a</a> &copy; 2001 <a href="http://www.phpbb.com/" target="_phpbb">phpBB Group</a></span> <span class="gensmall">Powered by phpBB 2.0a &copy; 2001 <a href="http://www.phpbb.com/" target="_phpbb">phpBB Group</a></span></div>
</div>
<br clear="all" />
</body> </body>
</html> </html>

View file

@ -1,10 +1,11 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <?xml version="1.0" encoding="UTF-8"?>
<html> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<meta name="MSSmartTagsPreventParsing" content="TRUE"> <!-- DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" -->
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<meta http-equiv="Content-Style-Type" content="text/css">
<head> <head>
<title>phpBB - {SITENAME}</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title>{PAGE_TITLE}</title>
<style type="text/css"> <style type="text/css">
<!-- <!--
@ -33,9 +34,9 @@ INPUT.text {font-family:"Courier New",courier;font-size:8pt;}
</head> </head>
<body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}"> <body bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
<a name="#top"></a> <a name="top"></a>
<table width="98%" cellpadding="1" cellspacing="0" border="0" align="center"> <form method="post" action="{S_LOGIN_ACTION}"><table width="98%" cellpadding="1" cellspacing="0" border="0" align="center">
<tr> <tr>
<td class="tablebg" width="100%"><table width="100%" cellspacing="1" cellpadding="4" border="0"> <td class="tablebg" width="100%"><table width="100%" cellspacing="1" cellpadding="4" border="0">
<tr> <tr>
@ -49,19 +50,19 @@ INPUT.text {font-family:"Courier New",courier;font-size:8pt;}
<tr> <tr>
<td class="row1"><table width="100%" cellspacing="0" cellpadding="4" border="0"> <td class="row1"><table width="100%" cellspacing="0" cellpadding="4" border="0">
<tr> <tr>
<td><span class="gensmall"><a href="{U_FAQ}">{L_FAQ}</a>&nbsp;|&nbsp;<a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a>&nbsp;|&nbsp;<a href="{U_REGISTER}">{L_REGISTER}</a>&nbsp;|&nbsp<a href="{U_SEARCH}">{L_SEARCH}</a></span></td> <td><span class="gensmall"><a href="{U_FAQ}">{L_FAQ}</a>&nbsp;|&nbsp;<a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a>&nbsp;|&nbsp;<a href="{U_REGISTER}">{L_REGISTER}</a>&nbsp;|&nbsp;<a href="{U_SEARCH}">{L_SEARCH}</a></span></td>
<td align="center"><span class="gensmall">{L_LAST_VISIT} {S_LAST_VISIT_DATE}</span></td> <td align="center"><span class="gensmall">{L_LAST_VISIT} {LAST_VISIT_DATE}</span></td>
<td align="right"><span class="gensmall"><a href="{U_PROFILE}">{L_PROFILE}</a>&nbsp;|&nbsp;<a href="{U_GROUP_CP}">{L_USERGROUPS}</a>&nbsp;|&nbsp;<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></span></td> <td align="right"><span class="gensmall"><a href="{U_PROFILE}">{L_PROFILE}</a>&nbsp;|&nbsp;<a href="{U_GROUP_CP}">{L_USERGROUPS}</a>&nbsp;|&nbsp;<a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></span></td>
</tr> </tr>
<!-- BEGIN loginbox --> <!-- BEGIN loginbox -->
<tr><form method="post" action="{S_LOGIN_ACTION}"> <tr>
<td colspan="3" align="right" valign="bottom"><span class="gensmall">{L_USERNAME}: <input class="text" type="text" name="username">&nbsp;&nbsp;&nbsp;{L_PASSWORD}: <input type="password" name="password">&nbsp;&nbsp;&nbsp;{L_AUTO_LOGIN}</font>:&nbsp;<input class="text" type="checkbox" name="autologin">&nbsp;&nbsp;&nbsp;<input type="submit" name="submit" value="{L_LOGIN}">&nbsp;</span></td> <td colspan="3" align="right" valign="bottom"><span class="gensmall">{L_USERNAME}: <input class="text" type="text" name="username" />&nbsp;&nbsp;&nbsp;{L_PASSWORD}: <input type="password" name="password" />&nbsp;&nbsp;&nbsp;{L_AUTO_LOGIN}</span>:&nbsp;<input class="text" type="checkbox" name="autologin" />&nbsp;&nbsp;&nbsp;<input type="submit" name="submit" value="{L_LOGIN}" />&nbsp;</td>
</form></tr> </tr>
<!-- END loginbox --> <!-- END loginbox -->
</table></td> </table></td>
</tr> </tr>
</table></td> </table></td>
</tr> </tr>
</table> </table></form>
<br clear="all"><br> <br clear="all" /><br />