Created
May 19, 2012 17:48
-
-
Save turntayble81/2731683 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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