Changed menu
authorAndrew DeFaria <Andrew@DeFaria.com>
Fri, 8 Mar 2019 22:35:15 +0000 (15:35 -0700)
committerAndrew DeFaria <Andrew@DeFaria.com>
Fri, 8 Mar 2019 22:35:15 +0000 (15:35 -0700)
maps/lib/MAPSWeb.pm
maps/php/MAPS.php

index 3b68a80..4f3afda 100644 (file)
@@ -281,23 +281,23 @@ sub NavigationBar($) {
     print div ({-class => 'username'}, 'Welcome '. ucfirst $userid);
     print div ({-class => 'menu'},
       (a {-href => '/maps/'},
-        'MAPS Home<br>'),
+        'Home<br>'),
       (a {-href => '/maps/bin/stats.cgi'},
         'Statistics<br>'),
       (a {-href => '/maps/bin/editprofile.cgi'},
-        'Edit Profile<br>'),
+        'Profile<br>'),
       (a {-href => '/maps/php/Reports.php'},
         'Reports<br>'),
       (a {-href => '/maps/php/list.php?type=white'},
-        'White List<br>'),
+        'White<br>'),
       (a {-href => '/maps/php/list.php?type=black'},
-        'Black List<br>'),
+        'Black<br>'),
       (a {-href => '/maps/php/list.php?type=null'},
-        'Null List<br>'),
+        'Null<br>'),
       (a {-href => '/maps/doc/'},
         'Help<br>'),
       (a {-href => '/maps/adm/'},
-        'MAPS Admin<br>'),
+        'MAPS<br>'),
       (a {-href => '/maps/?logout=yes'},
         'Logout'),
     );
index 22110bb..406c928 100755 (executable)
@@ -310,15 +310,15 @@ END;
     print <<<END
   <div class="username">Welcome $Userid</div>
     <div class="menu">
-    <a href="/maps/">MAPS Home</a><br>
+    <a href="/maps/">Home</a><br>
     <a href="/maps/bin/stats.cgi">Statistics</a><br>
-    <a href="/maps/bin/editprofile.cgi">Edit Profile</a><br>
+    <a href="/maps/bin/editprofile.cgi">Profile</a><br>
     <a href="/maps/php/Reports.php">Reports</a><br>
-    <a href="/maps/php/list.php?type=white">White List</a><br>
-    <a href="/maps/php/list.php?type=black">Black List</a><br>
-    <a href="/maps/php/list.php?type=null">Null List</a><br>
+    <a href="/maps/php/list.php?type=white">White</a><br>
+    <a href="/maps/php/list.php?type=black">Black</a><br>
+    <a href="/maps/php/list.php?type=null">Null</a><br>
     <a href="/maps/doc/">Help</a><br>
-    <a href="/maps/adm/">MAPS Admin</a><br>
+    <a href="/maps/adm/">Admin</a><br>
     <a href="/maps/?logout=yes">Logout</a>
     </div>
 END;