diff options
author | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-31 14:06:06 +0000 |
---|---|---|
committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2001-07-31 14:06:06 +0000 |
commit | b3366f1e3518c5b46b379178eac191e3a3974dfa (patch) | |
tree | 6e29ba4b824f778c7116593e74a771b1b6f03d7a | |
parent | 8b84c5a970c5d8102dbe918ea6a31ba2482b4d3b (diff) | |
download | forums-b3366f1e3518c5b46b379178eac191e3a3974dfa.tar forums-b3366f1e3518c5b46b379178eac191e3a3974dfa.tar.gz forums-b3366f1e3518c5b46b379178eac191e3a3974dfa.tar.bz2 forums-b3366f1e3518c5b46b379178eac191e3a3974dfa.tar.xz forums-b3366f1e3518c5b46b379178eac191e3a3974dfa.zip |
HTML 4.01 and XHTML 1.0 compliance changes
git-svn-id: file:///svn/phpbb/trunk@767 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/includes/page_header.php | 26 | ||||
-rw-r--r-- | phpBB/includes/page_tail.php | 2 | ||||
-rw-r--r-- | phpBB/includes/sessions.php | 4 | ||||
-rw-r--r-- | phpBB/index.php | 53 | ||||
-rw-r--r-- | phpBB/templates/PSO/index_body.tpl | 37 | ||||
-rw-r--r-- | phpBB/templates/PSO/overall_footer.tpl | 10 | ||||
-rw-r--r-- | phpBB/templates/PSO/overall_header.tpl | 31 |
7 files changed, 70 insertions, 93 deletions
diff --git a/phpBB/includes/page_header.php b/phpBB/includes/page_header.php index 6e18dd7ca4..d44e018c37 100644 --- a/phpBB/includes/page_header.php +++ b/phpBB/includes/page_header.php @@ -73,8 +73,6 @@ else $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']); // @@ -100,7 +98,7 @@ while($row = $db->sql_fetchrow($result)) { 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&" . POST_USERS_URL . "=" . $row['user_id']) . "\">" . $row['username'] . "</a>"; } else { @@ -171,6 +169,8 @@ $template->assign_vars(array( "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'], "LOGGED_IN_USER_LIST" => $userlist, + "PRIVATE_MESSAGE_INFO" => $l_privmsgs_text, + "LAST_VISIT_DATE" => $s_last_visit, "L_USERNAME" => $lang['Username'], "L_PASSWORD" => $lang['Password'], @@ -203,8 +203,7 @@ $template->assign_vars(array( "L_MESSAGE" => $lang['Message'], "L_BY" => $lang['by'], "L_LOGIN_LOGOUT" => $l_login_logout, - "L_PRIVATE_MESSAGE_INFO" => $l_privmsgs_text, - "L_LAST_VISIT" => $l_last_visit, + "L_LAST_VISIT" => $lang['You_last_visit'], "U_INDEX" => append_sid("index.".$phpEx), "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_LOGIN_ACTION" => append_sid("login.$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']), "T_HEAD_STYLESHEET" => $theme['head_stylesheet'], @@ -235,12 +233,21 @@ $template->assign_vars(array( "T_TR_COLOR1" => "#".$theme['tr_color1'], "T_TR_COLOR2" => "#".$theme['tr_color2'], "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_COLOR2" => "#".$theme['th_color2'], "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_COLOR2" => "#".$theme['td_color2'], "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_FONTFACE2" => $theme['fontface2'], "T_FONTFACE3" => $theme['fontface3'], @@ -250,10 +257,9 @@ $template->assign_vars(array( "T_FONTCOLOR1" => "#".$theme['fontcolor1'], "T_FONTCOLOR2" => "#".$theme['fontcolor2'], "T_FONTCOLOR3" => "#".$theme['fontcolor3'], - "T_IMG1" => $theme['img1'], - "T_IMG2" => $theme['img2'], - "T_IMG3" => $theme['img3'], - "T_IMG4" => $theme['img4']) + "T_SPAN_CLASS1" => $theme['span_class1'], + "T_SPAN_CLASS2" => $theme['span_class2'], + "T_SPAN_CLASS3" => $theme['span_class3']) ); // diff --git a/phpBB/includes/page_tail.php b/phpBB/includes/page_tail.php index 607b322b0b..c092f00fe5 100644 --- a/phpBB/includes/page_tail.php +++ b/phpBB/includes/page_tail.php @@ -37,7 +37,7 @@ $template->set_filenames(array( $template->assign_vars(array( "PHPBB_VERSION" => "2.0-alpha", - "ADMIN_LINK" => $admin_link)); + "ADMIN_LINK" => $admin_link . "<br />")); $template->pparse("overall_footer"); diff --git a/phpBB/includes/sessions.php b/phpBB/includes/sessions.php index c5f0db17f3..035bf8b2ea 100644 --- a/phpBB/includes/sessions.php +++ b/phpBB/includes/sessions.php @@ -413,8 +413,8 @@ function append_sid($url) if(!empty($SID) && !eregi("sid=", $url)) { - $url = ereg_replace("[&?]+$", "", $url); - $url .= ( (strpos($url, "?") != false) ? "&" : "?" ) . $SID; +// $url = ereg_replace("[&?]+$", "", $url); + $url .= ( (strpos($url, "?") != false) ? "&" : "?" ) . $SID; } return($url); diff --git a/phpBB/index.php b/phpBB/index.php index 4b18b0b996..a7c04f27f8 100644 --- a/phpBB/index.php +++ b/phpBB/index.php @@ -140,21 +140,6 @@ if($total_categories = $db->sql_numrows($q_categories)) AND u.user_id = ug.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)) { 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'], - "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&" . POST_USERS_URL . "=$newest_uid")) ); // @@ -216,6 +201,8 @@ if($total_categories = $db->sql_numrows($q_categories)) { $cat_id = $category_rows[$i]['cat_id']; + $count = 0; + for($j = 0; $j < $total_forums; $j++) { $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) { - $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']) { - $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 { - $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']; @@ -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 = $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> "; + $last_post .= "<a href=\"" . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $forum_rows[$j]['user_id']) . "\">" . $last_poster . "</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'] . "\" 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 { @@ -283,14 +270,14 @@ if($total_categories = $db->sql_numrows($q_categories)) $moderators_links .= ", "; } - if(!($mod_count % 2) && $mod_count != 0) + if( !($mod_count % 2) && $mod_count != 0 ) { $moderators_links .= "<br />"; } 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&" . POST_USERS_URL . "=" . $forum_mods_id[$forum_id][$mods]) . "\">" . $forum_mods_name[$forum_id][$mods] . "</a>"; } else { @@ -305,30 +292,24 @@ if($total_categories = $db->sql_numrows($q_categories)) $moderators_links = " "; } - // - // This should end up in the template using IF...ELSE...ENDIF - // - if($row_color == "#DDDDDD") - { - $row_color = "#CCCCCC"; - } - else - { - $row_color = "#DDDDDD"; - } + $row_color = "#" . ( ( !($count%2) ) ? $theme['td_color1'] : $theme['td_color2'] ); + $row_class = ( !($count%2) ) ? $theme['td_class1'] : $theme['td_class2']; $template->assign_block_vars("catrow.forumrow", array( + "ROW_COLOR" => $row_color, + "ROW_CLASS" => $row_class, "FOLDER" => $folder_image, "FORUM_NAME" => stripslashes($forum_rows[$j]['forum_name']), "FORUM_DESC" => stripslashes($forum_rows[$j]['forum_desc']), - "ROW_COLOR" => $row_color, "POSTS" => $forum_rows[$j]['forum_posts'], "TOPICS" => $forum_rows[$j]['forum_topics'], "LAST_POST" => $last_post, "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&" . $forum_rows[$j]['forum_posts'])) ); + + $count++; } else if($viewcat != -1) { diff --git a/phpBB/templates/PSO/index_body.tpl b/phpBB/templates/PSO/index_body.tpl index 9c1792499b..ce82025995 100644 --- a/phpBB/templates/PSO/index_body.tpl +++ b/phpBB/templates/PSO/index_body.tpl @@ -9,12 +9,12 @@ <tr> <td class="tablebg"><table width="100%" cellpadding="3" cellspacing="1" border="0"> <tr> - <th> </td> - <th> {L_FORUM} </td> - <th> {L_TOPICS} </td> - <th> {L_POSTS} </td> - <th> {L_LASTPOST} </td> - <th> {L_MODERATOR} </td> + <th> </th> + <th> {L_FORUM} </th> + <th> {L_TOPICS} </th> + <th> {L_POSTS} </th> + <th> {L_LASTPOST} </th> + <th> {L_MODERATOR} </th> </tr> <!-- BEGIN catrow --> <tr> @@ -23,11 +23,11 @@ <!-- BEGIN forumrow --> <tr> <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="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="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> <!-- END forumrow --> <!-- 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> </tr> <tr> - <td class="row1" width="7%" align="center" valign="middle"><img src="images/mailbox.gif"></td> - <td class="row2" colspan="5" align="left"><span class="gen">{L_PRIVATE_MESSAGE_INFO}</span></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">{PRIVATE_MESSAGE_INFO}</span></td> </tr> <tr> <td class="cat" colspan="6"><span class="cattitle"><b><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></b></span></td> </tr> <tr> - <td class="row1" width="7%" align="center" valign="middle"><img src="images/whosonline.gif"></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="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> </tr> </table></td> </tr> @@ -53,23 +53,16 @@ <tr> <td align="left" valign="top"><table cellspacing="0" border="0"> <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> </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> </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> </tr> </table></td> <td align="right" valign="top"><span class="gensmall"><b>{S_TIMEZONE}</b></span></td> </tr> </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 --> diff --git a/phpBB/templates/PSO/overall_footer.tpl b/phpBB/templates/PSO/overall_footer.tpl index 4ca89331f1..35702d9af0 100644 --- a/phpBB/templates/PSO/overall_footer.tpl +++ b/phpBB/templates/PSO/overall_footer.tpl @@ -1,8 +1,7 @@ + <br clear="all" /> -<div align="center"> -<span class="gensmall">{ADMIN_LINK}</span> -<br clear="all" /><br /> +<div align="center"><span class="gensmall">{ADMIN_LINK}</span><br /> <!-- Please note that the following copyright notice @@ -19,10 +18,7 @@ The phpBB Group : 2001 //--> -<span class="gensmall">Powered by phpBB 2.0a</a> © 2001 <a href="http://www.phpbb.com/" target="_phpbb">phpBB Group</a></span> -</div> - -<br clear="all" /> +<span class="gensmall">Powered by phpBB 2.0a © 2001 <a href="http://www.phpbb.com/" target="_phpbb">phpBB Group</a></span></div> </body> </html>
\ No newline at end of file diff --git a/phpBB/templates/PSO/overall_header.tpl b/phpBB/templates/PSO/overall_header.tpl index a49eae5103..66aee4c690 100644 --- a/phpBB/templates/PSO/overall_header.tpl +++ b/phpBB/templates/PSO/overall_header.tpl @@ -1,10 +1,11 @@ -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> -<html> -<meta name="MSSmartTagsPreventParsing" content="TRUE"> -<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> -<meta http-equiv="Content-Style-Type" content="text/css"> +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> +<!-- DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" --> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <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"> <!-- @@ -33,9 +34,9 @@ INPUT.text {font-family:"Courier New",courier;font-size:8pt;} </head> <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> <td class="tablebg" width="100%"><table width="100%" cellspacing="1" cellpadding="4" border="0"> <tr> @@ -49,19 +50,19 @@ INPUT.text {font-family:"Courier New",courier;font-size:8pt;} <tr> <td class="row1"><table width="100%" cellspacing="0" cellpadding="4" border="0"> <tr> - <td><span class="gensmall"><a href="{U_FAQ}">{L_FAQ}</a> | <a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a> | <a href="{U_REGISTER}">{L_REGISTER}</a> | <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><span class="gensmall"><a href="{U_FAQ}">{L_FAQ}</a> | <a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a> | <a href="{U_REGISTER}">{L_REGISTER}</a> | <a href="{U_SEARCH}">{L_SEARCH}</a></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> | <a href="{U_GROUP_CP}">{L_USERGROUPS}</a> | <a href="{U_LOGIN_LOGOUT}">{L_LOGIN_LOGOUT}</a></span></td> </tr> <!-- BEGIN loginbox --> - <tr><form method="post" action="{S_LOGIN_ACTION}"> - <td colspan="3" align="right" valign="bottom"><span class="gensmall">{L_USERNAME}: <input class="text" type="text" name="username"> {L_PASSWORD}: <input type="password" name="password"> {L_AUTO_LOGIN}</font>: <input class="text" type="checkbox" name="autologin"> <input type="submit" name="submit" value="{L_LOGIN}"> </span></td> - </form></tr> + <tr> + <td colspan="3" align="right" valign="bottom"><span class="gensmall">{L_USERNAME}: <input class="text" type="text" name="username" /> {L_PASSWORD}: <input type="password" name="password" /> {L_AUTO_LOGIN}</span>: <input class="text" type="checkbox" name="autologin" /> <input type="submit" name="submit" value="{L_LOGIN}" /> </td> + </tr> <!-- END loginbox --> </table></td> </tr> </table></td> </tr> -</table> +</table></form> -<br clear="all"><br> +<br clear="all" /><br /> |