Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

<div class="photo-heading">
<p ng-if="showImageRequired" required-field is-required="true" class="pull-right required-text">required field</p>
<p class="photo-section">
<strong>
<span ng-if="showImageRequired" class="required-field">* </span>
<span ng-if="isCloseup">{{picType}} pictures - min of 1, max of 3 ({{imageNum}} of 3)</span>
<span ng-if="isOptional">{{picType}} pictures ({{imageNum}} of 3 max)</span>
</strong>
</p>
</div>
<div ng-if="!imageSelected">
<p class="additionalPicText">{{additionalPicText}}</p>
<div class="full-button-wrapper">
<input-photo btn-text="Take Photo" ng-model="currPhoto" on-select="takePhoto()"></input-photo>
</div>
</div>
<div ng-if="imageSelected">
<div class="media-container" ng-class="{'ie-11': isIE11}">
<img ng-src="{{currPhoto.src}}" alt="Captured photo preview of: {{picType + ' pictures ' + imageNum + ' of 3 max'}}" ng-class="currPhoto.rotateClass" tabindex="-1" />
</div>
<div class="media-description-container" >
<form name="photoCommentsForm">
<p ng-if="showDescriptionRequired" required-field is-required="true" class="required-text">required field</p>
<input-text label="Description:" ng-id="photo-description" class="resizable" use-text-area="true" maxlength="500" ng-model="image.imageDescription" placeholder="Enter comments" character-counter='true' ng-required="true" />
</form>
</div>
<div class="inline-button-wrapper">
<div class="inline-button input-photo" btn-text="Retake" ng-model="currPhoto" on-select="retakePhoto()"></div>
<button ng-if="hideNext && !imageAccepted" ng-click="acceptPhoto()" ng-disabled="!image.imageDescription" class="btn btn-default">Accept</button>
</div>
<div class="inline-button-wrapper">
<button ng-if="showTakeAnother && imageAccepted" ng-click="anotherPhoto()" class="btn btn-default">Take Another</button>
<button ng-if="imageAccepted" ng-click="skipSection()" class="btn btn-default">Skip</button>
</div>
</div>