diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-01 16:48:07 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-01 16:48:07 -0700 |
commit | 6348e70daa113e8b3203de8fbc919d08c90d972e (patch) | |
tree | 1bc3dd3bc85fe6136411086785cf6753960e22f9 /view/profile_edit.tpl | |
download | volse-hubzilla-6348e70daa113e8b3203de8fbc919d08c90d972e.tar.gz volse-hubzilla-6348e70daa113e8b3203de8fbc919d08c90d972e.tar.bz2 volse-hubzilla-6348e70daa113e8b3203de8fbc919d08c90d972e.zip |
Initial checkin
Diffstat (limited to 'view/profile_edit.tpl')
-rw-r--r-- | view/profile_edit.tpl | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/view/profile_edit.tpl b/view/profile_edit.tpl new file mode 100644 index 000000000..25fc6fd4e --- /dev/null +++ b/view/profile_edit.tpl @@ -0,0 +1,91 @@ +<h1>Edit Profile Details</h1> + +$default + +<div id="profile-edit-wrapper" > +<form id="profile-edit-form" action="profiles/$profile_id" method="post" > + +<div id="profile-edit-profile-name-wrapper" > +<label id="profile-edit-profile-name-label" for="profile-edit-profile-name" >Profile Name: </label> +<input type="text size="32" name="profile_name" id="profile-edit-profile-name" value="$profile_name" /><div class="required">*</div> +</div> +<div id="profile-edit-profile-name-end"></div> + +<div id="profile-edit-name-wrapper" > +<label id="profile-edit-name-label" for="profile-edit-name" >Your Full Name: </label> +<input type="text size="32" name="name" id="profile-edit-name" value="$name" /> +</div> +<div id="profile-edit-name-end"></div> + +<div id="profile-edit-gender-wrapper" > +<label id="profile-edit-gender-label" for="profile-edit-" >Your Gender: </label> +$gender +</div> +<div id="profile-edit-gender-end"></div> + + +<div id="profile-edit-address-wrapper" > +<label id="profile-edit-address-label" for="profile-edit-address" >Street Address: </label> +<input type="text size="32" name="address" id="profile-edit-address" value="$address" /> +</div> +<div id="profile-edit-address-end"></div> + +<div id="profile-edit-locality-wrapper" > +<label id="profile-edit-locality-label" for="profile-edit-locality" >Locality/City: </label> +<input type="text size="32" name="locality" id="profile-edit-locality" value="$locality" /> +</div> +<div id="profile-edit-locality-end"></div> + +<div id="profile-edit-region-wrapper" > +<label id="profile-edit-region-label" for="profile-edit-region" >Region/State: </label> +<input type="text size="32" name="region" id="profile-edit-region" value="$region" /> +</div> +<div id="profile-edit-region-end"></div> + +<div id="profile-edit-postal-code-wrapper" > +<label id="profile-edit-postal-code-label" for="profile-edit-postal-code" >Postal/Zip Code: </label> +<input type="text size="32" name="postal_code" id="profile-edit-postal-code" value="$postal_code" /> +</div> +<div id="profile-edit-postal-code-end"></div> + +<div id="profile-edit-country-name-wrapper" > +<label id="profile-edit-country-name-label" for="profile-edit-country-name" >Country: </label> +<input type="text size="32" name="country_name" id="profile-edit-country-name" value="$country_name" /> +</div> +<div id="profile-edit-country-name-end"></div> + + +<div id="profile-edit-marital-wrapper" > +<label id="profile-edit-marital-label" for="profile-edit-marital" >Marital Status: </label> +$marital +</div> +<div id="profile-edit-marital-end"></div> + +<div id="profile-edit-homepage-wrapper" > +<label id="profile-edit-homepage-label" for="profile-edit-homepage" >Homepage URL: </label> +<input type="text size="32" name="homepage" id="profile-edit-homepage" value="$homepage" /> +</div> +<div id="profile-edit-homepage-end"></div> + +$profile_in_dir + +<div id="about-jot-wrapper" > +<p id="about-jot-desc" > +Tell us about yourself. +</p> + +<textarea rows="13" cols="72" id="profile-jot-text" name="about" >$about</textarea> + +</div> +<div id="about-jot-end"></div> +</div> + + +<div id="profile-edit-submit-wrapper" > +<input type="submit" name="submit" id="profile-edit-submit-button" value="Submit" /> +</div> +<div id="profile-edit-submit-end"></div> + + +</form> +</div>
\ No newline at end of file |