added help link for conf login
This commit is contained in:
parent
b643b14a8f
commit
d390914d68
|
@ -26,7 +26,13 @@ $Id$
|
|||
$helpArray = array (
|
||||
"101" => array ("ext" => "FALSE", "Headline" => _("Hilfetest 1"), "Text" => _("blablabla 1"), "SeeAlso" => "<a href=\"./help.php?HelpNumber=102\" target=\"_self\">102</a>"),
|
||||
"102" => array ("ext" => "FALSE", "Headline" => _("Hilfetest 2"), "Text" => _("blablabla 2"), "SeeAlso" => ""),
|
||||
"103" => array ("ext" => "TRUE", "Link" => "help/extFileExample.php")
|
||||
"103" => array ("ext" => "TRUE", "Link" => "help/extFileExample.php"),
|
||||
// configuration wizard (200 - 249)
|
||||
// configuration login
|
||||
"200" => array ("ext" => "FALSE", "Headline" => _("Configuration Wizard - Login"),
|
||||
"Text" => _("Please enter the configuration password. This is NOT your LDAP password.".
|
||||
" It is stored in lam.conf. If this is the first time you log in, enter \"lam\"."),
|
||||
"SeeAlso" => "")
|
||||
/* This is a sample help entry. Just copy this line an modify the vakues between the [] brackets.
|
||||
Help text is located in the array:
|
||||
"[Helpnumber]" => array ("ext" => "FALSE", "Headline" => _("[Headline]"), "Text" => _("[Text]"), "SeeAlso" => "[SeeAlso link]"),
|
||||
|
|
|
@ -41,10 +41,18 @@ session_start();
|
|||
<img src="../../graphics/banner.jpg" border=1></a>
|
||||
</p>
|
||||
<hr><br><br>
|
||||
<b><p align="center"> <? echo _("Password to enter preferences:"); ?> </b></p>
|
||||
<form action="confmain.php" method="post">
|
||||
<p align="center"><input type="password" name="passwd">
|
||||
<input type="submit" name="submit" value=<? echo _("Ok"); ?> ></p>
|
||||
<table border=0 align="center">
|
||||
<tr>
|
||||
<td colspan=3><b><p align="center"> <? echo _("Password to enter preferences:"); ?> </b></p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><p align="center"><input type="password" name="passwd"></td>
|
||||
<td><input type="submit" name="submit" value= <? echo _("Ok"); ?> </td>
|
||||
<td> <a href="../help.php?HelpNumber=200" target="lamhelp"><? echo _("Help") ?></a></td>
|
||||
</p>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue