Login mit Frontenduser ?
Login mit Frontenduser ?
hallo zusammen, ich möchte ein frontend-login zusammen mit der in contenido 4.5.2 vorgesehenen FrontendUserVerwaltung verwenden. im moment bekomme ich aber nur mit den angelegten backend-usern einen zugang. werden die frontenduser in einer eigenen tabelle abgelegt? und wenn ja, wie bekomm ich die in mein login-formular integriert? wäre sehr dankbar für eure hilfe...
Eigentlich sollte die V4.5.x bereits die entsprechenden Funktionen unter Administration -> Frontend nutzen. Wird das normale Login-Modul verwendet, sollten diese Einträge berücksichtigt werden.
Bin mir aber nicht sicher.
Was für ein Login-Modul verwendest Du denn?
Gruß
HerrB
Bin mir aber nicht sicher.
Was für ein Login-Modul verwendest Du denn?
Gruß
HerrB
Bitte keine unaufgeforderten PMs oder E-Mails -> use da Forum!
Newsletter: V4.4.x | V4.6.0-15 (Module, Backend) | V4.6.22+
Standardartikelliste: V4.4.x | V4.6.x
http://www.contenido.org/forum/search.php | http://faq.contenido.org | http://www.communido.net
Newsletter: V4.4.x | V4.6.0-15 (Module, Backend) | V4.6.22+
Standardartikelliste: V4.4.x | V4.6.x
http://www.contenido.org/forum/search.php | http://faq.contenido.org | http://www.communido.net
hallo, ich verwende dieses formular:
Code: Alles auswählen
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<br>
<table width="135" border="0" cellspacing="0" cellpadding="0" style="padding-left:10px">
<tr>
<td height="150">
<?php
if ($auth->auth["uid"] == "nobody")
{
?>
<form name="login" method="post" action="front_content.php?idcatart=<?php echo $idcatart; ?>">
<!--<form name ="login" method="post" action="front_content.php?idcatart=46">-->
<div align="left">
<input type="hidden" name="vaction" value="login">
<input type="hidden" name="formtimestamp" value="<?php echo time(); ?>">
<table border="0" cellpadding="0" cellspacing="0" width="140">
<tr>
<td class="Klein">
<div align="left">Username</div>
</td>
</tr>
<!--<tr><td class="Klein"><input type="input" name="username" value=""></td></tr>-->
<tr>
<td>
<div align="left">
<input type="text" class="Klein" name="username" size="18" maxlength="32" value="<?php echo ( isset($this->auth["uname"]) ) ? $this->auth["uname"] : "" ?>">
</div>
</td>
</tr>
<tr>
<td class="Klein">
<div align="left">Passwort</div>
</td>
</tr>
<tr>
<td class="Klein">
<div align="left">
<input type="password" class="Klein" name="password" value="" size="18">
</div>
</td>
</tr>
</table>
<br>
<input style="COLOR: #336699; BACKGROUND-COLOR: #ffffff; BORDER-COLOR: 1px #336699 dashed; BORDER: 1px dashed" type="submit" class="Normal" name="login" value="Login">
</div>
</form>
<div align="left" class="Klein">
<?php
} else {
?>
<span class="Klein">Logged in as:</span> <br>
<span class="NormalBold"> <?php echo $auth->auth["uname"]; ?></span>
</div>
<form method="post" action="front_content.php?idcatart=<?php echo $idcatart; ?>">
<!--<form method="post" action="front_content.php?idcatart=<?php echo $idcatart; ?>">-->
<div align="left">
<input style="COLOR: #336699; BACKGROUND-COLOR: #ffffff; BORDER-COLOR: 1px #336699 dashed; BORDER: 1px dashed" type="submit" class="Normal" name="logout" value="Logout">
</div>
</form>
<div align="left">
<?php
}
?>
>> <a class="klein" href="?idcat=9">Login Anfragen</a>
<hr>
</div>
</td>
</tr>
</table>