| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
$loginNoKick=true; |
|---|
| 38 |
$loginNoDisplayError=true;; |
|---|
| 39 |
require("include/session.php") |
|---|
| 40 |
?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
|---|
| 41 |
<html> |
|---|
| 42 |
<head> |
|---|
| 43 |
<title>phpBMS Browser Requirements</title> |
|---|
| 44 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> |
|---|
| 45 |
<link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> |
|---|
| 46 |
</head> |
|---|
| 47 |
|
|---|
| 48 |
<body><div class="bodyline" style="width:700px;"> |
|---|
| 49 |
<h1>phpBMS Client Browser Requirements</h1> |
|---|
| 50 |
<div class="box" style="float:right;background-color:white;"><img src="common/image/logo-large.png" width="250" height="57" /></div> |
|---|
| 51 |
<div> |
|---|
| 52 |
<ul> |
|---|
| 53 |
<li><strong class="large">JavaScript v2.0</strong><br /> |
|---|
| 54 |
<br /> |
|---|
| 55 |
This application makes heavy use of newer JavaScript functions, both in doing form verification, and with the many AJAX routines. <br /> |
|---|
| 56 |
<br /> |
|---|
| 57 |
<strong>A note about window pop-ups:</strong> This application does utilize Javascript to open new windows. If you disable Javascript window opening (like in Mozilla or Opera) or are utilizing a 3rd-party application to stop Internet Explorer (IE) from opening unwanted windows, this application might not work correctly.<br /> |
|---|
| 58 |
</li> |
|---|
| 59 |
<li><strong class="large">Cookies</strong><br /> |
|---|
| 60 |
<br /> |
|---|
| 61 |
A single cookie is set to identify the user during a session. <br /> |
|---|
| 62 |
</li> |
|---|
| 63 |
<li><strong class="large">Style Sheets (CSS) v1.1</strong><br /> |
|---|
| 64 |
<br /> |
|---|
| 65 |
Your browser must support the rendering of Cascading Style Sheets. The default style sheet scheme is supported on most browsers, but definitely looks best in Firefox. <br /> |
|---|
| 66 |
</li> |
|---|
| 67 |
</ul></div> |
|---|
| 68 |
<h2>Tested Browsers</h2> |
|---|
| 69 |
<div><table border="0" cellpadding="0" cellspacing="0" class="querytable"> |
|---|
| 70 |
<tr> |
|---|
| 71 |
<th class="queryheader" nowrap>Browser Application</th> |
|---|
| 72 |
<th class="queryheader">Version</th> |
|---|
| 73 |
<th class="queryheader">Platform(s)</th> |
|---|
| 74 |
<th align="center" class="queryheader">Compatibility</th> |
|---|
| 75 |
</tr> |
|---|
| 76 |
<tr class="qr1" style="cursor:auto"> |
|---|
| 77 |
<td>Firefox</td> |
|---|
| 78 |
<td>1.0.7</td> |
|---|
| 79 |
<td>Windows/Macintosh</td> |
|---|
| 80 |
<td align="center" class="important">X</td> |
|---|
| 81 |
</tr> |
|---|
| 82 |
|
|---|
| 83 |
<tr class="qr2" style="cursor:auto"> |
|---|
| 84 |
<td>Internet Explorer</td> |
|---|
| 85 |
<td>6.0.2800.1106</td> |
|---|
| 86 |
<td>Windows</td> |
|---|
| 87 |
<td align="center" class="important">X</td> |
|---|
| 88 |
</tr> |
|---|
| 89 |
</table> |
|---|
| 90 |
</div> |
|---|
| 91 |
<div class="box" align="right"> |
|---|
| 92 |
<br /> |
|---|
| 93 |
<input type="button" value="back to login page" class="Buttons" onClick="document.location='index.php'"/> <br/> |
|---|
| 94 |
<br /> |
|---|
| 95 |
</div> |
|---|
| 96 |
</div> |
|---|
| 97 |
</body> |
|---|
| 98 |
</html> |
|---|
| 99 |
|
|---|