Ajout des info html minimale dans loginFunction

This commit is contained in:
Rodolphe Quiedeville 2003-08-30 12:21:32 +00:00
parent 8d38511936
commit 1f9796ee77

View File

@ -30,13 +30,14 @@ function loginFunction()
/**
* Change the HTML output so that it fits to your
* application. */
print '<html><head><title>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>";
}