From 1f9796ee77ca04bb21dab3a4efa8282f17b3f579 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Sat, 30 Aug 2003 12:21:32 +0000 Subject: [PATCH] Ajout des info html minimale dans loginFunction --- htdocs/lib/functions.inc.php3 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/lib/functions.inc.php3 b/htdocs/lib/functions.inc.php3 index ae85b99cd55..560f50ee4d0 100644 --- a/htdocs/lib/functions.inc.php3 +++ b/htdocs/lib/functions.inc.php3 @@ -30,13 +30,14 @@ function loginFunction() /** * Change the HTML output so that it fits to your * application. */ + print 'Dolibarr Authentification</head><body>'; print '<p>Dolibarr Authentification'; echo "<form method=\"post\" action=\"" . $_SERVER['PHP_SELF'] . "\">"; print '<table><tr>'; print '<td>Login:</td><td><input type="text" name="username"></td></tr>';; print '<tr><td>Password:</td><td><input type="password" name="password"></td></tr>'; echo '<tr><td colspan="2" align="center"><input value="Login" type="submit"></td></tr>'; - echo "</table></form></p>"; + echo "</table></form></p></body></html>"; }