]> git.mxchange.org Git - friendica.git/blob - view/profile_edit.tpl
new profile tables, profile clone
[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
29 <div id="profile-edit-address-wrapper" >
30 <label id="profile-edit-address-label" for="profile-edit-address" >Street Address: </label>
31 <input type="text size="32" name="address" id="profile-edit-address" value="$address" />
32 </div>
33 <div id="profile-edit-address-end"></div>
34
35 <div id="profile-edit-locality-wrapper" >
36 <label id="profile-edit-locality-label" for="profile-edit-locality" >Locality/City: </label>
37 <input type="text size="32" name="locality" id="profile-edit-locality" value="$locality" />
38 </div>
39 <div id="profile-edit-locality-end"></div>
40
41
42 <div id="profile-edit-postal-code-wrapper" >
43 <label id="profile-edit-postal-code-label" for="profile-edit-postal-code" >Postal/Zip Code: </label>
44 <input type="text size="32" name="postal_code" id="profile-edit-postal-code" value="$postal_code" />
45 </div>
46 <div id="profile-edit-postal-code-end"></div>
47
48 <div id="profile-edit-country-name-wrapper" >
49 <input type="hidden" name="txtSelectedCountry" value="" >
50
51 <label id="profile-edit-country-name-label" for="profile-edit-country-name" >Country: </label>
52 <select name="country_name" id="profile-edit-country-name" onChange="Fill_States('$region');">
53 <option selected="selected" >$country_name</option>
54 <option>temp</option>
55 </select>
56 </div>
57 <div id="profile-edit-country-name-end"></div>
58
59 <div id="profile-edit-region-wrapper" >
60 <input type="hidden" name="txtSelectedState" value="" >
61 <label id="profile-edit-region-label" for="profile-edit-region" >Region/State: </label>
62 <select name="region" id="profile-edit-region" onChange="Update_Globals();" >
63 <option selected="selected" >$region</option>
64 <option>temp</option>
65 </select>
66 </div>
67 <div id="profile-edit-region-end"></div>
68
69
70 <div id="profile-edit-marital-wrapper" >
71 <label id="profile-edit-marital-label" for="profile-edit-marital" >Marital Status: </label>
72 $marital
73 </div>
74 <div id="profile-edit-marital-end"></div>
75
76 <div id="profile-edit-homepage-wrapper" >
77 <label id="profile-edit-homepage-label" for="profile-edit-homepage" >Homepage URL: </label>
78 <input type="text size="32" name="homepage" id="profile-edit-homepage" value="$homepage" />
79 </div>
80 <div id="profile-edit-homepage-end"></div>
81
82 $profile_in_dir
83
84 <div id="about-jot-wrapper" >
85 <p id="about-jot-desc" >
86 Tell us about yourself. 
87 </p>
88
89 <textarea rows="13" cols="72" id="profile-jot-text" name="about" >$about</textarea>
90
91 </div>
92 <div id="about-jot-end"></div>
93 </div>
94
95
96 <div id="profile-edit-submit-wrapper" >
97 <input type="submit" name="submit" id="profile-edit-submit-button" value="Submit" />
98 </div>
99 <div id="profile-edit-submit-end"></div>
100
101
102 </form>
103 </div>
104 <script type="text/javascript">Fill_Country('$country_name');Fill_States('$region');</script>