Geburtstag/Alter als Pflichtfeld
Verfasst: 24.05.2008 19:34
Hallo,
wollte gerade den Mod(siehe Thema-Name) bei mir einbauen aber kann folgendes nicht durchführen da folgender Teil nicht vorhanden ist.
Kann mir jemand helfen?
wollte gerade den Mod(siehe Thema-Name) bei mir einbauen aber kann folgendes nicht durchführen da folgender Teil nicht vorhanden ist.
Code: Alles auswählen
<dl>
<dt><label for="user_from">{L_LOCATION}: </label></dt>
<dd><input type="text" tabindex="3" name="user_from" id="user_from" size="25" maxlength="100" value="{USER_FROM}" class="inputbox autowidth" title="{L_LOCATION}" /></dd>
</dl>
Code: Alles auswählen
Zitat:
öffne: styles/prosilver/ucp_register.htm
suche
Code:
<dl>
<dt><label for="user_from">{L_LOCATION}: </label></dt>
<dd><input type="text" tabindex="3" name="user_from" id="user_from" size="25" maxlength="100" value="{USER_FROM}" class="inputbox autowidth" title="{L_LOCATION}" /></dd>
</dl>
danach einfügen
Code:
<dl>
<dt><label for="bday_day">{L_BIRTHDAY}: *</label><br /><span>{L_BIRTHDAY_EXPLAIN}</span></dt>
<dd>
<label for="bday_day">{L_DAY}: <select name="bday_day" id="bday_day" style="width: 4em;">{S_BIRTHDAY_DAY_OPTIONS}</select></label>
<label for="bday_month">{L_MONTH}: <select name="bday_month" id="bday_month" style="width: 4em;">{S_BIRTHDAY_MONTH_OPTIONS}</select></label>
<label for="bday_year">{L_YEAR}: <select name="bday_year" id="bday_year" style="width: 6em;">{S_BIRTHDAY_YEAR_OPTIONS}</select></label>
</dd>
</dl>