Hallo,
Wie kann der Link "Passwort vergessen" im Login Block integriert werden?
Hier der Originaltext, des Login Blocks:
Zitat$thisfile=basename(__file__);
if (!defined("mxMainFileLoaded")) die ("You can't access this file directly...");
$mxblockcache = FALSE;
global $name;
$content = "";
if (!mxIsUser() && $GLOBALS['name'] != "Your_Account") {
if(!defined("mxloginblockviewed")) define("mxloginblockviewed",TRUE);
$content .= "<form action=\"modules.php\" method=\"post\" class=\"boxcontent\">";
$content .= "<center>"._NICKNAME."<br>";
$content .= "<input type=\"text\" name=\"uname\" size=\"15\" maxlength=\"25\" style=\"width: 80%;\"><br>";
$content .= ""._PASSWORD."<br>";
$content .= "<input type=\"password\" name=\"pass\" size=\"15\" maxlength=\"20\" style=\"width: 80%;\"><br>";
$content .= "<input type=\"checkbox\" value=\"1\" name=\"rememberme\"> "._REMEMBERLOGIN."<br>";
$content .= mxGetUserLoginCheckField();
$content .= "<input type=\"hidden\" name=\"op\" value=\"login\">";
$content .= "<input type=\"submit\" value=\""._LOGIN."\"></center></form>";
if (!mxIsAdmin()) {
$content .= "<span class=\"tiny\">"._ASREGISTERED."</span>";
}
}
#if (mxIsAdmin()) {
# $content .= ""._ADMIN."<br> <a href=\"admin.php?op=logout\">"._LOGOUT."</a>";
# }
if ($content) {
$content = "<font class=\"boxcontent\">".$content."</font>";
}
$blockfiletitle = _LOGIN;
?>
und der Link zur "Passwort vergessen" Seite:
Zitathttp://www.seminaranzeiger.ch/cms/modules.php?name=Your_Account&op=pass_lost
Danke für die Hilfe
Andy