trying a few table layouts and designs
[gwvp.git] / gwvplib / gwvpconfig.php
index e63c99f..3457e38 100644 (file)
@@ -73,6 +73,7 @@ function gwvp_ConfigPageBody()
        echo "<h1>Global Configuration</h1>";
        echo "<form method=\"post\" action=\"$BASE_URL/admin/configupdate\">";
        echo "<table>";
+       echo "<tr><th bgcolor=\"#eeeeff\">Configuration Variable</th><th bgcolor=\"#eeeeff\">Value</th></tr>";
        foreach($CONFIG_VARS as $key=>$var) {
                $name = $key;
                $text = $var["text"];
@@ -97,7 +98,7 @@ function gwvp_ConfigPageBody()
                                break;
                }
                error_log("go config $name as $ltype, $curtypeval");
-               echo "<tr><td>$text</td><td><input type=\"$ltype\" name=\"$name\" $curtypeval></td></tr>";
+               echo "<tr><td>$text</td><td bgcolor=\"#eeeeee\"><input type=\"$ltype\" name=\"$name\" $curtypeval></td></tr>";
        }
        
        echo "</table>";