Hallo Henrik, habe an einer Hp für den Counter Service gearbeitet. Der Login klappt schon einmal nur die anmeldung wird nicht übernommen. Hier ist der Code der im Templates meiner hp ist: Code: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
| <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="210" id="AutoNumber1"> <form method="Post" Action="http://www.4webmaster.org/csh/anmelden.inc.php" onSubmit='window.open("","counterservice","width=850,height=500,scrollbars=yes,resizable=yes,menubar=no,location=no,top=25,left=25");' target="counterservice"> <tr>
<td width="110" height="20"><b><font size="1" color="#FEAD22">Name, Vorname:</font></b></td> <td height="20"> <input type="text" class="form" name="v[name]" size="10" maxlength="60" style="color: #FEAD22; width: 100px; height: 20px; border: 1px solid #FEAD22; background-color: #FFFFFF"></td> </tr> <tr> <td width="110" height="20"><b><font size="1" color="#FEAD22">Homepage:</font></b></td> <td height="20"> <input type="text" class="form" name="v[homepage]" size="10" value="http://" maxlength="60" style="color: #FEAD22; width: 100px; height: 20px; border: 1px solid #FEAD22; background-color: #FFFFFF"></td> </tr>
<tr> <td width="110" height="20"><b><font size="1" color="#FEAD22">Titel d. Homepage:</font></b></td> <td height="20"> <input type="text" class="form" name="v[hptitel]" size="10" maxlength="250" style="color: #FEAD22; width: 100px; height: 20px; border: 1px solid #FEAD22; background-color: #FFFFFF"></td> </tr> <tr> <td width="110" height="20"><b><font size="1" color="#FEAD22">E-Mail Adresse:</font></b></td> <td height="20">
<input type="text" class="form" name="v[mail]" size="10" maxlength="60" style="color: #FEAD22; width: 100px; height: 20px; border: 1px solid #FEAD22; background-color: #FFFFFF"></td> </tr> <tr> <td width="110" height="20"><b><font size="1" color="#FEAD22">Login Name:</font></b></td> <td height="20"> <input type="text" class="form" name="v[login]" size="10" maxlength="15" style="color: #FEAD22; width: 100px; height: 20px; border: 1px solid #FEAD22; background-color: #FFFFFF"></td> </tr> <tr> <td width="110" height="20"><b><font size="1" color="#FEAD22">Passwort:</font></b></td>
<td height="20">
<input type="password" class="form" name="v[passwort]" size="10" maxlength="10" style="color: #FEAD22; width: 100px; height: 20px; border: 1px solid #FEAD22; background-color: #FFFFFF"></td> </tr> <tr> <td width="110" height="20"><b><font size="1" color="#FEAD22">Passwort wiederh.:</font></b></td> <td height="20"> <input type="password" class="form" name="v[passwort2]" size="10" maxlength="10" style="color: #FEAD22; width: 100px; height: 20px; border: 1px solid #FEAD22; background-color: #FFFFFF"></td> </tr> <tr>
<td width="110" height="30"><b><font size="1" color="#FEAD22">AGB Akzeptiert?</font></b></td> <td height="30"> <input type="checkbox" class="check" value="1" name="accept"><b><font size="1" color="#FEAD22"> JA</font></b></td> </tr> <tr> <td width="110" height="20"> <input type="reset" class="form" Value="löschen" style="color: #FEAD22; width: 100px; height: 20px; border: 1px solid #FEAD22; background-color: #FFFFFF"></td> <td height="20">
<input type="hidden" name="komplett" value="true"><input class="form" type="submit" name="pro" value="Anmelden" style="color: #FEAD22; width: 100px; height: 20px; border: 1px solid #FEAD22; background-color: #FFFFFF"></td> </tr> </form> </table> | Ich dachte schon ein <input type="hidden" ... oder so, aber ich finde keinen fehler! Woran kann es liegen? Falscher action pafd? Ciao Alex
|