navigation  interaction  search

 other resources

Changeset 131

Show
Ignore:
Timestamp:
10/19/06 15:58:01
Author:
brieb
Message:

Finished updating head.php include.
Updated CSS and XHTML compliance with clients add/edit screen

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/phpbms/common/stylesheet/mozilla/forms.css

    r121 r131  
    8080.buttonFF{background:url(image/button-ff.png) 0 0 no-repeat;} 
    8181.buttonNew{background:url(image/button-new.png) 0 0 no-repeat;} 
     82.buttonEmail{background:url(image/button-email.png) 0 0 no-repeat;} 
    8283.buttonEdit{background:url(image/button-edit.png) 0 0 no-repeat;} 
    8384.buttonEditDisabled{background:url(image/button-edit-disabled.png) 0 0 no-repeat;} 
     
    9394.buttonDown{background:url(image/button-down.png) 0 0 no-repeat;} 
    9495.buttonDownDisabled{background:url(image/button-down-disabled.png) 0 0 no-repeat;} 
     96.buttonWWW{background:url(image/button-www.png) 0 0 no-repeat;} 
    9597 
    9698.buttonShowSQLUp{width:35px;background:url(image/button-sql-up.png) 0 0 no-repeat;} 
  • trunk/phpbms/help/index.php

    r93 r131  
    88<title>phpBMS Resources</title> 
    99<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    10 <link href="<?php echo $_SESSION["app_path"]?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> 
    11         <style> 
    12         li{margin-bottom:10px;} 
    13         </style> 
     10<?php require("head.php")?> 
    1411</head> 
    1512 
  • trunk/phpbms/help/shortcuts.php

    r12 r131  
    99<title><?php echo $pageTitle?></title> 
    1010<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    11 <link href="<?php echo $_SESSION["app_path"]?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> 
    12 <style>li{margin-bottom:10px;}</style> 
    13 <script language="JavaScript" src="<?php echo $_SESSION["app_path"]?>common/javascript/common.js" type="text/javascript" ></script> 
    14 <script language="javascript"> 
    15         function navTo(){ 
    16                 var theselect=getObjectFromID("navselect"); 
    17                 document.location=theselect.value; 
    18         } 
    19 </script> 
     11<?php require("../head.php")?> 
    2012</head> 
    2113 
     
    2315<div class="bodyline" style="width:700px;"> 
    2416        <h1><?php echo $pageTitle?></h1> 
    25         <div style="float:right"> 
    26                 <select id="navselect"> 
    27                         <option value="">choose...</option> 
    28                         <option value="<?php echo $_SESSION["app_path"]?>help/reference">Using phpBMS</option> 
    29                         <option value="http://www.kreotek.com/products/phpbms/tutorials">Tutorials</option> 
    30                         <option value="<?php echo $_SESSION["app_path"]?>help/customize.php">Customizing phpBMS</option> 
    31                         <option value="<?php echo $_SESSION["app_path"]?>help/shortcuts.php">Keyboard Shortcuts</option> 
    32                         <option value="<?php echo $_SESSION["app_path"]?>info.php">About phpBMS</option> 
    33                 </select> 
    34                 <input type="button" class="Buttons" value="go" onClick="navTo()"/> 
    35         </div> 
    3617         
    3718        <h2>List/Search Screens</h2> 
  • trunk/phpbms/include/fields.php

    r117 r131  
    170170        ?><input name="<?php echo $name?>" id="<?php echo $name?>" type="text" value="<?php echo $value?>" <?php 
    171171        if ($attributes) foreach($attributes as $attribute => $tvalue) echo " ".$attribute."=\"".$tvalue."\""; 
    172         ?> /><button id="<?php echo $name?>Button" type="button" style="vertical-align:middle;" class="invisibleButtons" onClick="openEmail('<?php echo $name?>')" title="Send E-Mail"><img src="<?php echo $_SESSION["app_path"]?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/image/button-email.png" align="absmiddle" alt="send email" width="16" height="16" border="0" /></button> 
     172        ?> /><button id="<?php echo $name?>Button" type="button" class="graphicButtons buttonEmail" onclick="openEmail('<?php echo $name?>')" title="Send E-Mail"><span>send e-mail</span></button> 
    173173        <script language="JavaScript">emailArray[emailArray.length]=new Array('<?php echo $name?>','One or more e-mail fields are invalid.');</script><?php      
    174174} 
     
    187187        ?><input name="<?php echo $name?>" id="<?php echo $name?>" type="text" value="<?php echo $value?>" <?php 
    188188        if ($attributes) foreach($attributes as $attribute => $tvalue) echo " ".$attribute."=\"".$tvalue."\""; 
    189         ?> /><button id="<?php echo $name?>Button" type="button" class="invisibleButtons" onClick="openWebpage('<?php echo $name?>')" title="Open in New Window"><img src="<?php echo $_SESSION["app_path"] ?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/image/button-www.png" align="absmiddle" alt="link" width="16" height="16" border="0" /></button> 
     189        ?> /><button id="<?php echo $name?>Button" type="button" class="graphicButtons buttonWWW" onclick="openWebpage('<?php echo $name?>')" title="Visit site in new window"><span>visit site</span></button> 
    190190        <script language="JavaScript">wwwArray[wwwArray.length]=new Array('<?php echo $name?>','One or more web page fields are invalid.');</script>     
    191191        <?php 
  • trunk/phpbms/index.php

    r117 r131  
    3838        require_once("include/common_functions.php"); 
    3939        require_once("include/login_include.php"); 
     40         
     41        if(!isset($_SESSION["app_path"])) 
    4042?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    4143<html xmlns="http://www.w3.org/1999/xhtml"> 
     
    4345        <title><?PHP echo $_SESSION["application_name"]; ?> - Login Page</title> 
    4446        <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" /> 
     47 
     48        <link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" />        
    4649        <link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/pages/login.css" rel="stylesheet" type="text/css" /> 
    4750        <script language="javascript" src="common/javascript/common.js"></script> 
  • trunk/phpbms/info.php

    r121 r131  
    6363<title>phpBMS Information</title> 
    6464<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    65 <link href="common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /> 
    66         <style> 
    67         li{margin-bottom:4px;} 
    68         </style> 
     65<?php require("head.php")?> 
    6966</head> 
    7067 
  • trunk/phpbms/modules/base/adminsettings.php

    r98 r131  
    4949<title><?php echo $pageTitle ?></title> 
    5050<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    51 <link href="<?php echo $_SESSION["app_path"] ?>common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css" /
     51<?php require("../../head.php")?
    5252<script language="JavaScript" src="../../common/javascript/fields.js"></script> 
    5353<script language="JavaScript" src="../../common/javascript/autofill.js"></script> 
  • trunk/phpbms/modules/bms/clients_addedit.php

    r65 r131  
    4646                $pageTitle="Inactive ".$pageTitle; 
    4747         
    48 ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
    49 <html
     48?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
     49<html xmlns="http://www.w3.org/1999/xhtml"
    5050<head> 
    5151<title><?php echo $pageTitle ?></title> 
    5252<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
    53 <link href="../../common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/base.css" rel="stylesheet" type="text/css"> 
     53<?php require("../../head.php")?> 
     54<link href="../../common/stylesheet/<?php echo $_SESSION["stylesheet"] ?>/pages/client.css" rel="stylesheet" type="text/css"> 
    5455<script language="JavaScript" src="javascript/client.js"></script> 
    55 <script language="JavaScript" src="../../common/javascript/common.js"></script> 
    5656<script language="JavaScript" src="../../common/javascript/fields.js"></script> 
    5757<script language="JavaScript" src="../../common/javascript/choicelist.js"></script> 
     
    6363<?php client_tabs("General",$therecord["id"]); ?> 
    6464<div class="bodyline"> 
    65         <div style="float:right;width:200px;"> 
     65        <div id="topButtons"> 
    6666                <?php showSaveCancel(1); ?> 
    6767                <?php if(isset($_GET["invoiceid"])){?> 
    68                        <div> 
    69                                <input name="gotoinvoice" type="button" value="back to order" onClick="location.href='<?php echo getAddEditFile(3) ?>?id=<?php echo $_GET["invoiceid"] ?>'" style="width:100%" class="Buttons"> 
    70                        </div>                   
     68                <div> 
     69                        <input name="gotoinvoice" type="button" value="back to order" onClick="location.href='<?php echo getAddEditFile(3) ?>?id=<?php echo $_GET["invoiceid"] ?>'" style="width:100%" class="Buttons"> 
     70                </div> 
    7171                <?php } ?>                       
     72        </div> 
     73 
     74        <h1 id="h1Title"><span><?php echo $pageTitle ?></span></h1> 
     75         
     76        <div id="rightSideDiv"> 
    7277                <fieldset> 
    7378                        <legend>attributes</legend> 
    74                         <label for="id">id<br /> 
    75                                 <input name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly="true" class="uneditable" style="width:98%" tabindex="-1" /> 
    76                         </label> 
    77                         <label for="type" class="important">type<br /> 
     79                        <p> 
     80                                <label for="id">id</label><br /> 
     81                                <input id="id" name="id" type="text" value="<?php echo $therecord["id"]; ?>" size="5" maxlength="5" readonly="true" class="uneditable" tabindex="-1" /> 
     82                        </p> 
     83                                 
     84                        <p> 
     85                                <label for="type" class="important">type</label><br /> 
    7886                                <?PHP  
    7987                                        $disabled="noDisable"; 
     
    8189                                                if(checkForInvoices($therecord["id"])) 
    8290                                                        $disabled="disabled";                                    
    83                                         basic_choicelist("type",$therecord["type"],Array(Array("name"=>"prospect","value"=>"prospect"),Array("name"=>"client","value"=>"client")),Array("style"=>"width:180px;","class"=>"important","tabindex"=>5,$disabled=>"true","onChange"=>"changeClientType(this)")); 
     91                                        basic_choicelist("type",$therecord["type"],Array(Array("name"=>"prospect","value"=>"prospect"),Array("name"=>"client","value"=>"client")),Array("class"=>"important","tabindex"=>5,$disabled=>"true","onChange"=>"changeClientType(this)")); 
    8492                                ?> 
    85                         </label> 
    86                         <label for="inactive" class="important" style="padding-top:6px"> 
    87                                 <?PHP field_checkbox("inactive",$therecord["inactive"],false,Array("tabindex"=>"4"))?>inactive 
    88                         </label> 
    89                         <label id="becameclientDiv" for="becameclient" <?php if($therecord["type"]=="prospect") echo "style=\"display:none;\"" ?>> 
    90                                 became a client<br /> 
    91                                 <input type="text" id="becameclient" name="becameclient" readonly="true" class="uneditable" value="<?php echo $therecord["becameclient"]?>" size="8" style="width:98%"> 
    92                         </label> 
    93                         <label for="category"> 
    94                                 category<br /> 
    95                                 <?PHP choicelist("category",$therecord["category"],"clientcategories",array("style"=>"width:180px","tabindex"=>"5")); ?> 
    96                         </label> 
     93                        </p> 
     94                         
     95                        <p> 
     96                                <?PHP field_checkbox("inactive",$therecord["inactive"],false,Array("tabindex"=>"4"))?><label for="inactive" class="important">inactive</label> 
     97                        </p> 
     98                         
     99                        <p id="becameclientDiv" <?php if($therecord["type"]=="prospect") echo "style=\"display:none;\"" ?>> 
     100                                <label for="becameclient">became a client</label><br /> 
     101                                <input type="text" id="becameclient" name="becameclient" readonly="true" class="uneditable" value="<?php echo $therecord["becameclient"]?>" size="8"> 
     102                        </p> 
     103                         
     104                        <p> 
     105                                <label for="category">category</label><br /> 
     106                                <?PHP choicelist("category",$therecord["category"],"clientcategories",array("tabindex"=>"5")); ?> 
     107                        </p> 
    97108                         
    98109                </fieldset> 
     
    100111                <fieldset> 
    101112                        <legend>sales</legend> 
    102                         <label for="ds-salesmanagerid">sales manager<br /> 
    103                                 <?PHP autofill("salesmanagerid",$therecord["salesmanagerid"],9,"users.id","concat(users.firstname,\" \",users.lastname)","\"\"","users.revoked=0 AND users.id > 1",Array("style"=>"width:98%;","maxlength"=>"64","tabindex"=>"25")) ?> 
    104                         </label> 
    105                         <label for="leadsource">lead source<br> 
    106                                 <?PHP choicelist("leadsource",$therecord["leadsource"],"leadsource",Array("tabindex"=>"26","class"=>"small","style"=>"width:170px")); ?> 
    107                         </label> 
     113                        <div class="fauxP"> 
     114                                <label for="ds-salesmanagerid">sales manager</label><br /> 
     115                                <?PHP autofill("salesmanagerid",$therecord["salesmanagerid"],9,"users.id","concat(users.firstname,\" \",users.lastname)","\"\"","users.revoked=0 AND users.id > 1",Array("maxlength"=>"64","tabindex"=>"25")) ?> 
     116                        </div> 
     117                         
     118                        <p> 
     119                                <label for="leadsource">lead source</label><br /> 
     120                                <?PHP choicelist("leadsource",$therecord["leadsource"],"leadsource",Array("tabindex"=>"26","class"=>"small")); ?> 
     121                        </p> 
    108122                </fieldset> 
    109123                                 
    110124                <fieldset> 
    111125                        <legend>defaults</legend> 
    112                         <label for="paymentmethod">payment type<br /> 
    113                                 <?PHP choicelist("paymentmethod",$therecord["paymentmethod"],"paymentmethod",Array("style"=>"width:170px;","tabindex"=>"27")); ?> 
    114                         </label> 
    115                         <label for="ccnumber">credit card number<br /> 
    116                                 <input id="ccnumber" name="ccnumber" type="text" value="<?PHP echo htmlQuotes($therecord["ccnumber"]) ?>" size="22" maxlength="32" style="width:98%" tabindex="28"/> 
    117                         </label> 
    118                         <label for="ccexpiration">credit card expiration<br /> 
     126                        <p> 
     127                                <label for="paymentmethod">payment type</label><br /> 
     128                                <?PHP choicelist("paymentmethod",$therecord["paymentmethod"],"paymentmethod",Array("tabindex"=>"27")); ?>                        
     129                        </p> 
     130 
     131                        <p> 
     132                                <label for="ccnumber">credit card number</label><br /> 
     133                                <input id="ccnumber" name="ccnumber" type="text" value="<?PHP echo htmlQuotes($therecord["ccnumber"]) ?>" size="22" maxlength="32" tabindex="28"/> 
     134                        </p> 
     135                         
     136                        <p> 
     137                                <label for="ccexpiration">credit card expiration</label><br /> 
    119138                                <input id="ccexpiration" name="ccexpiration" type="text"  value="<?PHP echo htmlQuotes($therecord["ccexpiration"]) ?>" size="7" maxlength="7" tabindex="29"/> 
    120                         </label> 
    121                         <label for="taxareaid-ds">tax area<br /> 
    122                                 <?PHP autofill("taxareaid",$therecord["taxareaid"],6,"tax.id","tax.name","concat(tax.percentage,\"%\")","",Array("size"=>"20","maxlength"=>"64","tabindex"=>"25","style"=>"width:98%"),0) ?> 
    123                         </label> 
     139                        </p> 
     140 
     141                        <div class="fauxP"> 
     142                                <label for="ds-taxareaid">tax area</label><br /> 
     143                                <?PHP autofill("taxareaid",$therecord["taxareaid"],6,"tax.id","tax.name","concat(tax.percentage,\"%\")","",Array("size"=>"20","maxlength"=>"64","tabindex"=>"25"),0) ?> 
     144                        </div> 
    124145                </fieldset>      
    125146        </div> 
    126147                 
    127         <div style="margin-right:204px;"> 
    128                 <h1><?php echo $pageTitle ?></h1> 
     148        <div id="leftSideDiv">           
    129149                <fieldset> 
    130150                        <legend>name / company</legend> 
    131                         <table border="0" cellpadding="0" cellspacing="0" class="recordtable"> 
    132                                 <tr> 
    133                                         <td nowrap> 
    134                                                 <label for="firstname" class="important">first name<br /> 
    135                                                         <input name="firstname" id="firstname" type="text" value="<?php echo htmlQuotes($therecord["firstname"])?>" size="32" maxlength="65" class="important" style="font-weight:bold;" tabindex=1;/> 
    136                                                         <script language="javascript">var thefirstname=getObjectFromID("firstname");thefirstname.focus()</script> 
    137                                                 </label> 
    138                                          </td>                   
    139                                          <td nowrap> 
    140                                                 <label for="lastname" class="important">last name<br /> 
    141                                                         <input id="lastname" name="lastname" type="text" value="<?php echo htmlQuotes($therecord["lastname"])?>" size="32" maxlength="65" class="important" style="font-weight:bold;"i tabindex=2 /> 
    142                                                 </label> 
    143                                         </td> 
    144                                 </tr> 
    145                         </table> 
    146                         <label for="company" class="important">company<br /> 
     151                        <p id="firstnameP"> 
     152                                <label for="firstname" class="important">first name</label><br /> 
     153                                <input name="firstname" id="firstname" type="text" value="<?php echo htmlQuotes($therecord["firstname"])?>" size="32" maxlength="65" class="important" tabindex=1;/> 
     154                                <script language="javascript">var thefirstname=getObjectFromID("firstname");thefirstname.focus()</script> 
     155                        </p> 
     156                        <p> 
     157                                <label for="lastname" class="important">last name</label><br /> 
     158                                <input id="lastname" name="lastname" type="text" value="<?php echo htmlQuotes($therecord["lastname"])?>" size="32" maxlength="65" class="important" tabindex=2 />                                
     159                        </p> 
     160                        <p> 
     161                                <label for="company" class="important">company</label><br /> 
    147162                                <input name="company" type="text" id="company" value="<?php echo htmlQuotes($therecord["company"])?>" size="71" maxlength="128" class="important" tabindex=3 /> 
    148                         </label
     163                        </p
    149164                </fieldset>      
    150165                                                         
    151166                <fieldset>                                       
    152167                        <legend>contact</legend> 
    153                         <table border="0" cellpadding="0" cellspacing="0" class="recordtable"> 
    154                                 <tr> 
    155                                         <td nowrap> 
    156                                                 <label for="workphone">work phone<br /> 
    157                                                         <?PHP field_text("workphone",$therecord["workphone"],0,"Work phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"6","size"=>"25","maxlength"=>"32")); ?> 
    158                                                 </label> 
    159                                         </td> 
    160                                         <td nowrap> 
    161                                                 <label for="homephone">home phone<br /> 
    162                                                         <?PHP field_text("homephone",$therecord["homephone"],0,"Home phone must be in valid format.<br /><em>(example: 505-994-6388)</em>)","phone",Array("tabindex"=>"7","size"=>"25","maxlength"=>"32")); ?> 
    163                                                 </label> 
    164                                         </td> 
    165                                 </tr><tr> 
    166                                         <td nowrap> 
    167                                                 <label for="mobilephone">mobile phone<br /> 
    168                                                         <?PHP field_text("mobilephone",$therecord["mobilephone"],0,"Mobile phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"8","size"=>"25","maxlength"=>"32")); ?> 
    169                                                 </label> 
    170                                         </td> 
    171                                         <td> 
    172                                                 <label for="fax">fax number <br /> 
    173                                                         <?PHP field_text("fax",$therecord["fax"],0,"Fax number must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"9","size"=>"25","maxlength"=>"32")); ?> 
    174                                                 </label> 
    175                                         </td> 
    176                                 </tr> 
    177                         </table> 
    178                         <label for="otherphone">other phone<br /> 
    179                                 <?PHP field_text("otherphone",$therecord["otherphone"],0,"Other phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"10","size"=>"25","maxlength"=>"32")); ?> 
    180                         </label> 
    181                         <label for="email" style="margin-top:10px;">e-mail address <br /> 
     168                        <p class="phonelefts"> 
     169                                <label for="workphone">work phone</label><br /> 
     170                                <?PHP field_text("workphone",$therecord["workphone"],0,"Work phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"6","size"=>"25","maxlength"=>"32")); ?>                    
     171                        </p> 
     172                         
     173                        <p> 
     174                                <label for="homephone">home phone</label><br /> 
     175                                <?PHP field_text("homephone",$therecord["homephone"],0,"Home phone must be in valid format.<br /><em>(example: 505-994-6388)</em>)","phone",Array("tabindex"=>"7","size"=>"25","maxlength"=>"32")); ?>                           
     176                        </p> 
     177                         
     178                        <p class="phonelefts"> 
     179                                <label for="mobilephone">mobile phone</label><br /> 
     180                                <?PHP field_text("mobilephone",$therecord["mobilephone"],0,"Mobile phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"8","size"=>"25","maxlength"=>"32")); ?>                                              
     181                        </p> 
     182 
     183                        <p> 
     184                                <label for="fax">fax number</label><br /> 
     185                                        <?PHP field_text("fax",$therecord["fax"],0,"Fax number must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"9","size"=>"25","maxlength"=>"32")); ?>                                
     186                        </p> 
     187                         
     188                        <p> 
     189                                <label for="otherphone">other phone</label><br /> 
     190                                <?PHP field_text("otherphone",$therecord["otherphone"],0,"Other phone must be in valid format.<br /><em>(example: 505-994-6388)</em>","phone",Array("tabindex"=>"10","size"=>"25","maxlength"=>"32")); ?>                                
     191                        </p> 
     192                         
     193                        <p> 
     194                                <label for="email">e-mail address</label><br /> 
    182195                                <?PHP field_email("email",$therecord["email"],Array("tabindex"=>"11","size"=>"68","maxlength"=>"128")); ?> 
    183                         </label> 
    184                         <label for="webaddress">web address<br /> 
     196                        </p> 
     197                         
     198                        <p> 
     199                                <label for="webaddress">web site</label><br /> 
    185200                                <?PHP field_web("webaddress",$therecord["webaddress"],Array("tabindex"=>"12","size"=>"68","maxlength"=>"128")); ?> 
    186                         </label
     201                        </p
    187202                </fieldset> 
    188203                 
    189204                <fieldset> 
    190205                        <legend><label for="address1">billing / main address</label></legend> 
    191                         <div
     206                        <p><br /
    192207                                <input id="address1" name="address1" type="text" size="71" maxlength="128" value="<?PHP echo htmlQuotes($therecord["address1"])?>" tabindex="13"/><br /> 
    193                                 <input id="address2" name="address2" type="text" size="71" maxlength="128" style="margin-top:2px;" value="<?PHP echo htmlQuotes($therecord["address2"])?>" tabindex="14"/> 
    194                         </div>           
    195                         <table border="0" cellpadding="0" cellspacing="0"> 
    196                                 <tr> 
    197                                         <td nowrap> 
    198                                                 <label for="city">city<br /> 
    199                                                         <input name="city" type="text" id="city" value="<?php echo htmlQuotes($therecord["city"])?>" size="35" maxlength="64" tabindex="15"/> 
    200                                                 </label> 
    201                                         </td> 
    202                                         <td nowrap > 
    203                                                 <label for="state">state/province<br /> 
    204                                                         <input name="state" type="text" id="state" value="<?php echo htmlQuotes($therecord["state"])?>" size="2" maxlength="2" tabindex="16" /> 
    205                                                 </label> 
    206                                         </td> 
    207                                         <td nowrap> 
    208                                                 <label for="postalcode">zip/postal code<br /> 
    209                                                         <input name="postalcode" type="text" id="postalcode" value="<?php echo htmlQuotes($therecord["postalcode"])?>" size="12" maxlength="15" tabindex="17"/> 
    210                                                 </label> 
    211                                         </td> 
    212                                 </tr> 
    213                         </table> 
    214                         <label for="country" >country<br /> 
     208                                <input id="address2" name="address2" type="text" size="71" maxlength="128" value="<?PHP echo htmlQuotes($therecord["address2"])?>" tabindex="14"/> 
     209                        </p> 
     210 
     211                        <p class="csz"> 
     212                                <label for="city">city</label><br /> 
     213                                <input name="city" type="text" id="city" value="<?php echo htmlQuotes($therecord["city"])?>" size="35" maxlength="64" tabindex="15"/> 
     214                        </p> 
     215 
     216                        <p class="csz"> 
     217                                <label for="state">state/province</label><br /> 
     218                                <input name="state" type="text" id="state" value="<?php echo htmlQuotes($therecord["state"])?>" size="2" maxlength="2" tabindex="16" /> 
     219                        </p> 
     220                        <p> 
     221                                <label for="postalcode">zip/postal code</label><br /> 
     222                                <input name="postalcode" type="text" id="postalcode" value="<?php echo htmlQuotes($therecord["postalcode"])?>" size="12" maxlength="15" tabindex="17" />                                 
     223                        </p> 
     224                        <p> 
     225                                <label for="country">country</label><br /> 
    215226                                <input id="country" name="country" type="text" value="<?PHP echo htmlQuotes($therecord["country"])?>" size="44" maxlength="128" tabindex="18"/> 
    216                         </label> 
     227                        </p> 
     228                         
    217229                </fieldset> 
    218230                 
    219231                <fieldset> 
    220232                        <legend><label for="shiptoaddress1">shipping address</label></legend> 
    221                         <div class="notes" style="padding-top:0px;padding-bottom:0px;">(if different from billing/main address)</div
    222                         <div
     233                        <p
     234                               <span class="notes">(if different from billing/main address)</span><br /
    223235                                <input id="shiptoaddress1" name="shiptoaddress1" type="text" size="71" maxlength="128" value="<?PHP echo htmlQuotes($therecord["shiptoaddress1"])?>" tabindex="19" /><br /> 
    224                                 <input id="shiptoaddress2" name="shiptoaddress2" type="text" size="71" maxlength="128" style="margin-top:2px;" value="<?PHP echo htmlQuotes($therecord["shiptoaddress2"])?>" tabindex="20"/> 
    225                         </div
    226                         <table border="0" cellpadding="0" cellspacing="0"> 
    227                                <tr
    228                                        <td nowrap
    229                                                <label for="shiptocity">city<br /> 
    230                                                        <input id="shiptocity" name="shiptocity" type="text" value="<?php echo htmlQuotes($therecord["shiptocity"])?>" size="35" maxlength="64" tabindex="21"/
    231                                                 </label> 
    232                                        </td><td nowrap
    233                                                <label for="shiptostate">state/province<br /> 
    234                                                        <input id="shiptostate" name="shiptostate" type="text" value="<?php echo htmlQuotes($therecord["shiptostate"])?>" size="2" maxlength="2" tabindex="22"/> 
    235                                                </label
    236                                        </td><td nowrap> 
    237                                                <label for="shiptopostalcode">zip/postal code<br /
    238                                                        <input id="shiptopostalcode" name="shiptopostalcode" type="text" value="<?php echo htmlQuotes($therecord["shiptopostalcode"])?>" size="12" maxlength="15" tabindex="23"/> 
    239                                                </label> 
    240                                        </td
    241                                </tr
    242                         </table
    243                         <label for="shiptocountry">country<br /> 
    244                                <input id="shiptocountry" name="shiptocountry" type="text" value="<?PHP echo htmlQuotes($therecord["shiptocountry"])?>" size="44" maxlength="128" tabindex="24"/
    245                        </label
    246                 </fieldset> 
     236                                <input id="shiptoaddress2" name="shiptoaddress2" type="text" size="71" maxlength="128" value="<?PHP echo htmlQuotes($therecord["shiptoaddress2"])?>" tabindex="20" /> 
     237                        </p
     238 
     239                        <p class="csz"
     240                                <label for="shiptocity">city</label><br /
     241                                <input id="shiptocity" name="shiptocity" type="text" value="<?php echo htmlQuotes($therecord["shiptocity"])?>" size="35" maxlength="64" tabindex="21" />                                
     242                        </p
     243 
     244                        <p class="csz"
     245                                <label for="shiptostate">state/province</label><br /> 
     246                                <input id="shiptostate" name="shiptostate" type="text" value="<?php echo htmlQuotes($therecord["shiptostate"])?>" size="2" maxlength="2" tabindex="22" />                               
     247                        </p
     248                         
     249                        <p
     250                                <label for="shiptopostalcode">zip/postal code</label><br /> 
     251                                <input id="shiptopostalcode" name="shiptopostalcode" type="text" value="<?php echo htmlQuotes($therecord["shiptopostalcode"])?>" size="12" maxlength="15" tabindex="23" />                              
     252                        </p
     253                        <p
     254                               <label for="shiptocountry">country</label><br /
     255                               <input id="shiptocountry" name="shiptocountry" type="text" value="<?PHP echo htmlQuotes($therecord["shiptocountry"])?>" size="44" maxlength="128" tabindex="24"/>                                
     256                        </p
     257                </fieldset
     258                 
    247259                <fieldset> 
    248260                        <legend><label for="comments">memo</label></legend> 
    249                         <div style="padding-top:0px;"><textarea name="comments" cols="20" rows="8" id="comments" style="width:98%" tabindex="30"><?php echo $therecord["comments"]?></textarea> 
    250                         </div> 
     261                        <p><br /> 
     262                        <textarea name="comments" cols="20" rows="8" id="comments" style="width:98%" tabindex="30"><?php echo $therecord["comments"]?></textarea> 
     263                        </p> 
    251264                </fieldset> 
    252265                 
  • trunk/phpbms/requirements.php

    r77 r131  
    4343<title>phpBMS Browser Requirements</title> 
    4444<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" /
     45<?php require("head.php")?
    4646</head> 
    4747 
Copyright © 2006-2007 Kreotek, LLC. All Rights reserved.