Hey!
Habe in meiner Sidebar zusätzlich schnell ein Formular eingebaut.
<form class="js-oxValidate" action="" method="post">
<ul class="clear catalogueform">
<li>
<label class="req">Anrede:</label>
<select name="Anrede">
<option>Herr</option>
<option>Frau</option>
</select>
</li>
<li [{if $aErrors.oxuser__oxfname}]class="oxInValid"[{/if}]>
<label class="req">Vorname:</label>
<input type="text" name="Name" size="70" maxlength="40" class="js-oxValidate js-oxValidate_notEmpty a145">
<p class="oxValidateError withoutpadding">
<span class="js-oxError_notEmpty">[{ oxmultilang ident="EXCEPTION_INPUT_NOTALLFIELDS" }]</span>
[{include file="message/inputvalidation.tpl" aErrors=$aErrors.oxuser__oxfname}]
</p>
</li>
<li [{if $aErrors.oxuser__oxlname}]class="oxInValid"[{/if}]>
<label class="req">Nachname:</label>
<input type="text" name="Nachname" size="70" maxlength="40" class="js-oxValidate js-oxValidate_notEmpty a145">
<p class="oxValidateError withoutpadding">
<span class="js-oxError_notEmpty">[{ oxmultilang ident="EXCEPTION_INPUT_NOTALLFIELDS" }]</span>
</p>
</li>
<li [{if $aErrors.oxuser__oxstreet}]class="oxInValid"[{/if}]>
<label class="req">Straße/Hausnummer:</label>
<input type="text" name="Straße/Hausnummer" size="70" maxlength="40" class="js-oxValidate js-oxValidate_notEmpty a145">
<p class="oxValidateError withoutpadding">
<span class="js-oxError_notEmpty">[{ oxmultilang ident="EXCEPTION_INPUT_NOTALLFIELDS" }]</span>
</p>
</li>
<li>
<li [{if $aErrors.oxuser__oxzip}]class="oxInValid"[{/if}]>
<label class="req">PLZ:</label>
<input type="text" name="PLZ" size="70" maxlength="40" class="js-oxValidate js-oxValidate_notEmpty a145">
<p class="oxValidateError withoutpadding">
<span class="js-oxError_notEmpty">[{ oxmultilang ident="EXCEPTION_INPUT_NOTALLFIELDS" }]</span>
</p>
</li>
<li [{if $aErrors.oxuser__oxcity}]class="oxInValid"[{/if}]>
<label class="req">Ort:</label>
<input type="text" name="Ort" size="70" maxlength="40" class="js-oxValidate js-oxValidate_notEmpty a145">
<p class="oxValidateError withoutpadding">
<span class="js-oxError_notEmpty">[{ oxmultilang ident="EXCEPTION_INPUT_NOTALLFIELDS" }]</span>
</p>
</li>
<li class="formNote">
[{ oxmultilang ident="FORM_CONTACT_COMPLETEMARKEDFIELDS2" }]
</li>
<li>
<button class="submitButton largeButton" type="submit" style="font-size: 10px;">Katalog anfordern</button>
</li>
</ul>
</form>
Fülle ich dieses Formular aus und schicke es ab, bekomm ich die Daten per E-Mail. Das funktioniert soweit.
Sobald ich aber den Login betätige, werde ich nicht eingeloggt und mir wird das Formular in der Sidebar geschickt.
LG,
Rene