ich habe ein "kleines Problem".....
Und zwar wird mein Login-Fenster nicht angezeigt!
in Layouts unter standard ist aber
Code: Alles auswählen
<container id="48" name="Login" types="Navigation" default="">Login</container>
bei den Modulen ist bei Login folgendes hinterlegt (bei Eingabe nichts, bei Ausgabe)
Code: Alles auswählen
<?php
/***********************************************
* CONTENIDO MODUL - OUTPUT
*
* Modulname : Loginbox
* Author(s) : Andreas Lindner
* Copyright : Contenido - four for business, Andreas Lindner
* Created : 05.08.2005
************************************************/
#Includes
cInclude('classes', 'class.template.php');
if ( !is_object($tpl) ) {
$tpl = new Template;
}
$tpl->reset();
if ($auth->auth["uid"] == "nobody"){
$template = 'login.html';
$tpl->set('s', 'FORM_ACTION', 'front_content.php?idcatart='.$idcatart);
$tpl->set('s', 'USERNAME', mi18n("Username"));
$tpl->set('s', 'PASSWORD', mi18n("Passwort"));
$tpl->set('s', 'GO', mi18n("Go"));
$tpl->set('s', 'LOGIN', mi18n("Login"));
} else {
$template = 'logout.html';
$tpl->set('s', 'CURRENT_USERNAME', mi18n("Sie sind angemeldet als"));
$tpl->set('s', 'USERNAME', $auth->auth["uname"]);
$tpl->set('s', 'HREF', 'front_content.php?idcatart='.$idcatart.'&logout=yes');
$tpl->set('s', 'LOGOUT', mi18n("Logout"));
}
$tpl->generate('templates/'.$template);
?>
bei den Modul-Templates ist in login.html folgendes hinterlegt:
Code: Alles auswählen
<div id="loginbox">
<form method="post" action="{FORM_ACTION}" style="padding:0;margin:0;" name="loginform" id="loginform">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="images/blank.gif" width="70" height="1" border="0"/></td>
<td><img src="images/blank.gif" width="73" height="1" border="0"/></td>
<td><img src="images/blank.gif" width="1" height="1" border="0"/></td>
</tr>
<tr>
<td><label for="username" class="label_searchbox">{USERNAME}</label></td>
<td><input type="input" name="username" id="username" value="" class="input_searchbox" style="margin-bottom:.4em;"/></td>
<td> </td>
</tr>
<tr>
<td><label for="password" class="label_searchbox">{PASSWORD}</label></td>
<td><input type="password" name="password" id="password" value="" class="input_searchbox"/></td>
<td><a href="javascript:document.forms['loginform'].submit();" style="color: #9d9ea2;" title="{GO}">{GO}</a> <a href="javascript:document.forms['loginform'].submit();" title="{GO}"><img src="images/navi_pfeil_rechts.gif" alt="{LOGIN}" title="{LOGIN}" border="0"/></a></td>
</tr>
</table>
</form>
</div>
jetzt weiß ich nicht wo ich noch schauen muss!?

danke im voraus für euere hilfe!