1 | <!-- INCLUDE ucp_header.html -->
|
---|
2 |
|
---|
3 | <form id="ucp" method="post" action="{S_UCP_ACTION}"{S_FORM_ENCTYPE}>
|
---|
4 |
|
---|
5 | <h2>{L_TITLE}</h2>
|
---|
6 |
|
---|
7 | <div class="panel">
|
---|
8 | <div class="inner"><span class="corners-top"><span></span></span>
|
---|
9 | <p>{L_PROFILE_INFO_NOTICE}</p>
|
---|
10 |
|
---|
11 | <fieldset>
|
---|
12 | <!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->
|
---|
13 | <dl>
|
---|
14 | <dt><label for="icq">{L_UCP_ICQ}:</label></dt>
|
---|
15 | <dd><input type="text" name="icq" id="icq" maxlength="15" value="{ICQ}" class="inputbox" /></dd>
|
---|
16 | </dl>
|
---|
17 | <dl>
|
---|
18 | <dt><label for="aim">{L_UCP_AIM}:</label></dt>
|
---|
19 | <dd><input type="text" name="aim" id="aim" maxlength="255" value="{AIM}" class="inputbox" /></dd>
|
---|
20 | </dl>
|
---|
21 | <dl>
|
---|
22 | <dt><label for="msn">{L_UCP_MSNM}:</label></dt>
|
---|
23 | <dd><input type="text" name="msn" id="msn" maxlength="255" value="{MSN}" class="inputbox" /></dd>
|
---|
24 | </dl>
|
---|
25 | <dl>
|
---|
26 | <dt><label for="yim">{L_UCP_YIM}:</label></dt>
|
---|
27 | <dd><input type="text" name="yim" id="yim" maxlength="255" value="{YIM}" class="inputbox" /></dd>
|
---|
28 | </dl>
|
---|
29 | <dl>
|
---|
30 | <dt><label for="jabber">{L_UCP_JABBER}:</label></dt>
|
---|
31 | <dd><input type="text" name="jabber" id="jabber" maxlength="255" value="{JABBER}" class="inputbox" /></dd>
|
---|
32 | </dl>
|
---|
33 | <dl>
|
---|
34 | <dt><label for="website">{L_WEBSITE}:</label></dt>
|
---|
35 | <dd><input type="text" name="website" id="website" maxlength="255" value="{WEBSITE}" class="inputbox" /></dd>
|
---|
36 | </dl>
|
---|
37 | <dl>
|
---|
38 | <dt><label for="location">{L_LOCATION}:</label></dt>
|
---|
39 | <dd><input type="text" name="location" id="location" maxlength="255" value="{LOCATION}" class="inputbox" /></dd>
|
---|
40 | </dl>
|
---|
41 | <dl>
|
---|
42 | <dt><label for="occupation">{L_OCCUPATION}:</label></dt>
|
---|
43 | <dd><textarea name="occupation" id="occupation" class="inputbox" rows="3" cols="30">{OCCUPATION}</textarea></dd>
|
---|
44 | </dl>
|
---|
45 | <dl>
|
---|
46 | <dt><label for="interests">{L_INTERESTS}:</label></dt>
|
---|
47 | <dd><textarea name="interests" id="interests" class="inputbox" rows="3" cols="30">{INTERESTS}</textarea></dd>
|
---|
48 | </dl>
|
---|
49 | <!-- IF S_BIRTHDAYS_ENABLED -->
|
---|
50 | <dl>
|
---|
51 | <dt><label for="bday_day">{L_BIRTHDAY}:</label><br /><span>{L_BIRTHDAY_EXPLAIN}</span></dt>
|
---|
52 | <dd>
|
---|
53 | <label for="bday_day">{L_DAY}: <select name="bday_day" id="bday_day" style="width: 4em;">{S_BIRTHDAY_DAY_OPTIONS}</select></label>
|
---|
54 | <label for="bday_month">{L_MONTH}: <select name="bday_month" id="bday_month" style="width: 4em;">{S_BIRTHDAY_MONTH_OPTIONS}</select></label>
|
---|
55 | <label for="bday_year">{L_YEAR}: <select name="bday_year" id="bday_year" style="width: 6em;">{S_BIRTHDAY_YEAR_OPTIONS}</select></label>
|
---|
56 | </dd>
|
---|
57 | </dl>
|
---|
58 | <!-- ENDIF -->
|
---|
59 | <!-- BEGIN profile_fields -->
|
---|
60 | <dl>
|
---|
61 | <dt><label<!-- IF profile_fields.FIELD_ID --> for="{profile_fields.FIELD_ID}"<!-- ENDIF -->>{profile_fields.LANG_NAME}:<!-- IF profile_fields.S_REQUIRED --> *<!-- ENDIF --></label>
|
---|
62 | <!-- IF profile_fields.LANG_EXPLAIN --><br /><span>{profile_fields.LANG_EXPLAIN}</span><!-- ENDIF --></dt>
|
---|
63 | <!-- IF profile_fields.ERROR --><dd class="error">{profile_fields.ERROR}</dd><!-- ENDIF -->
|
---|
64 | <dd>{profile_fields.FIELD}</dd>
|
---|
65 | </dl>
|
---|
66 | <!-- END profile_fields -->
|
---|
67 | </fieldset>
|
---|
68 |
|
---|
69 | <span class="corners-bottom"><span></span></span></div>
|
---|
70 | </div>
|
---|
71 |
|
---|
72 | <fieldset class="submit-buttons">
|
---|
73 | {S_HIDDEN_FIELDS}<input type="reset" value="{L_RESET}" name="reset" class="button2" />
|
---|
74 | <input type="submit" name="submit" value="{L_SUBMIT}" class="button1" />
|
---|
75 | {S_FORM_TOKEN}
|
---|
76 | </fieldset>
|
---|
77 | </form>
|
---|
78 |
|
---|
79 | <!-- INCLUDE ucp_footer.html -->
|
---|