]> git.mxchange.org Git - friendica.git/blob - view/profile_edit.tpl
ff0e2f8e44f9c86c49a7d916d0363f0c6343bbd6
[friendica.git] / view / profile_edit.tpl
1 <h1>Edit Profile Details</h1>
2
3 <div id="profile-edit-clone-link-wrapper" ><a href="profiles/clone/$profile_id" id="profile-edit-clone-link" title="Create a new profile using these settings">Clone this profile</a></div>
4
5 $default
6
7 <div id="profile-edit-wrapper" >
8 <form id="profile-edit-form" name="form1" action="profiles/$profile_id" method="post" >
9
10 <div id="profile-edit-profile-name-wrapper" >
11 <label id="profile-edit-profile-name-label" for="profile-edit-profile-name" >Profile Name: </label>
12 <input type="text size="32" name="profile_name" id="profile-edit-profile-name" value="$profile_name" /><div class="required">*</div>
13 </div>
14 <div id="profile-edit-profile-name-end"></div>
15
16 <div id="profile-edit-name-wrapper" >
17 <label id="profile-edit-name-label" for="profile-edit-name" >Your Full Name: </label>
18 <input type="text size="32" name="name" id="profile-edit-name" value="$name" />
19 </div>
20 <div id="profile-edit-name-end"></div>
21
22 <div id="profile-edit-gender-wrapper" >
23 <label id="profile-edit-gender-label" for="gender-select" >Your Gender: </label>
24 $gender
25 </div>
26 <div id="profile-edit-gender-end"></div>
27
28 <div id="profile-edit-dob-wrapper" >
29 <p id="birthday-description">Leave year blank to suppress age.</p>
30 <label id="profile-edit-dob-label" for="dob-select" >Birthday: </label>
31 <div id="profile-edit-dob" >
32 $dob
33 </div>
34 <div id="profile-edit-dob-end"></div>
35
36 <div id="profile-edit-address-wrapper" >
37 <label id="profile-edit-address-label" for="profile-edit-address" >Street Address: </label>
38 <input type="text size="32" name="address" id="profile-edit-address" value="$address" />
39 </div>
40 <div id="profile-edit-address-end"></div>
41
42 <div id="profile-edit-locality-wrapper" >
43 <label id="profile-edit-locality-label" for="profile-edit-locality" >Locality/City: </label>
44 <input type="text size="32" name="locality" id="profile-edit-locality" value="$locality" />
45 </div>
46 <div id="profile-edit-locality-end"></div>
47
48
49 <div id="profile-edit-postal-code-wrapper" >
50 <label id="profile-edit-postal-code-label" for="profile-edit-postal-code" >Postal/Zip Code: </label>
51 <input type="text size="32" name="postal_code" id="profile-edit-postal-code" value="$postal_code" />
52 </div>
53 <div id="profile-edit-postal-code-end"></div>
54
55 <div id="profile-edit-country-name-wrapper" >
56 <input type="hidden" name="txtSelectedCountry" value="" >
57
58 <label id="profile-edit-country-name-label" for="profile-edit-country-name" >Country: </label>
59 <select name="country_name" id="profile-edit-country-name" onChange="Fill_States('$region');">
60 <option selected="selected" >$country_name</option>
61 <option>temp</option>
62 </select>
63 </div>
64 <div id="profile-edit-country-name-end"></div>
65
66 <div id="profile-edit-region-wrapper" >
67 <input type="hidden" name="txtSelectedState" value="" >
68 <label id="profile-edit-region-label" for="profile-edit-region" >Region/State: </label>
69 <select name="region" id="profile-edit-region" onChange="Update_Globals();" >
70 <option selected="selected" >$region</option>
71 <option>temp</option>
72 </select>
73 </div>
74 <div id="profile-edit-region-end"></div>
75
76
77 <div id="profile-edit-marital-wrapper" >
78 <label id="profile-edit-marital-label" for="profile-edit-marital" >Marital Status: </label>
79 $marital
80 </div>
81 <div id="profile-edit-marital-end"></div>
82
83 <div id="profile-edit-sexual-wrapper" >
84 <label id="profile-edit-sexual-label" for="sexual-select" >Sexual Preference: </label>
85 $sexual
86 </div>
87 <div id="profile-edit-sexual-end"></div>
88
89
90
91 <div id="profile-edit-homepage-wrapper" >
92 <label id="profile-edit-homepage-label" for="profile-edit-homepage" >Homepage URL: </label>
93 <input type="text size="32" name="homepage" id="profile-edit-homepage" value="$homepage" />
94 </div>
95 <div id="profile-edit-homepage-end"></div>
96
97 $profile_in_dir
98
99 <div id="about-jot-wrapper" >
100 <p id="about-jot-desc" >
101 Tell us about yourself. 
102 </p>
103
104 <textarea rows="13" cols="72" id="profile-jot-text" name="about" >$about</textarea>
105
106 </div>
107 <div id="about-jot-end"></div>
108 </div>
109
110
111 <div id="profile-edit-submit-wrapper" >
112 <input type="submit" name="submit" id="profile-edit-submit-button" value="Submit" />
113 </div>
114 <div id="profile-edit-submit-end"></div>
115
116
117 </form>
118 </div>
119 <script type="text/javascript">Fill_Country('$country_name');Fill_States('$region');</script>