Skip to content

Instantly share code, notes, and snippets.

@turntayble81
Created May 19, 2012 17:48
Show Gist options
  • Save turntayble81/2731683 to your computer and use it in GitHub Desktop.
Save turntayble81/2731683 to your computer and use it in GitHub Desktop.
<div class="span5">
<h3>User Profile Image</h3>
<div class="help-block">Chose your profile image.<br />jpg, png, gif</div>
<div id="divUserProfileImages" class="userProfileImageContainer">
<?php echo isset($userProfileImages) ? $userProfileImage : ""; ?>
</div>
<form class="form-stacked" method="post" action="/images/process_image_upload" enctype="multipart/form-data" target="image_upload_target">
<fieldset>
<span id="userProfileImgUploadErr" class="errorMesg"></span><br />
<input type="file" name="image" /><br /><br />
<input type="hidden" name="label" value="<?php echo $label_url; ?>" />
<input type="hidden" name="imageType" value="userProfileImage" />
<input class="btn small" type="submit" value="Upload Image" />
</fieldset>
</form>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment