]> SAFE projects GIT repository - jmp/mailleur/commitdiff
Trying to insert a login screen
authorJean-Marc Pigeon (Delson) <jmp@safe.ca>
Tue, 26 Aug 2025 14:11:21 +0000 (10:11 -0400)
committerJean-Marc Pigeon (Delson) <jmp@safe.ca>
Tue, 26 Aug 2025 14:11:21 +0000 (10:11 -0400)
www/mailleur.php
www/reg-icons/clement_H.gif [new file with mode: 0644]
www/reg-icons/login.gif [new file with mode: 0644]
www/scrfun.php

index e543311a9e81b0577b0565295146f34c58434892..e7b2f72326d6a27ac5daafb59419bc1853ea1154 100644 (file)
@@ -9,6 +9,7 @@ function body()
 include "scrfun.php";
 
 $footer=footer("P:mailleur");
+$footer=login();
 
 $STR  = <<<EOT
 <HTML>    
@@ -20,6 +21,7 @@ $STR  = <<<EOT
 <CENTER><STRONG><FONT SIZE=+2 color=red>
 Mailleur
 </FONT></STRONG></CENTER>
+$login
 $footer
 </BODY>
 </HTML>
diff --git a/www/reg-icons/clement_H.gif b/www/reg-icons/clement_H.gif
new file mode 100644 (file)
index 0000000..0f323d5
Binary files /dev/null and b/www/reg-icons/clement_H.gif differ
diff --git a/www/reg-icons/login.gif b/www/reg-icons/login.gif
new file mode 100644 (file)
index 0000000..e131950
Binary files /dev/null and b/www/reg-icons/login.gif differ
index 28b086e14a0bb397f869aca7d87404e105c1ccf4..f61d921fc1f5650c39ed5b88b13dab4474892e5c 100644 (file)
@@ -52,5 +52,20 @@ EOT;
 return $STR;
 }
 
+//==============================================================
+//
+//     To display the login screen
+//
+//==============================================================
+function login()
+
+{
+$STR  = <<<EOT
+INPUT TYPE=IMAGE SRC="/reg-icons/clement_H.gif"  ALT="" >
+
+EOT;
+
+return $STR;
+}
 
 ?>