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