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="row">
<div class="i-btn-col" ng-if="imageSelected">
<button role="button" class="info-btn" aria-label="View sample image" title="View sample image" ng-click="tip()">
<i class="icon icon-info icon-large" aria-hidden="true"></i>
</button>
</div>
<div class="photo-heading">
<p required-field is-required="true" class="required-text pull-right">required field</p>
<p class="photo-section"><span class="required-field">* </span><strong>{{imageSection.description}} - {{imageNum}} of {{totalImagesInSection}}</strong></p>
<p>Take a photo of: {{imageType.description}}</p>
</div>
</div>
<div ng-if="!imageSelected">
<div ng-if="imageType.name != 'OTHER'" class="media-container" ng-class="{'ie-11': isIE11}">
<img ng-src="_assets/images/telederm-images/{{imageType.name}}.jpg" alt="Image of: {{imageType.description}}" />
</div>
<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: {{imageType.description}}" tabindex="-1" ng-class="currPhoto.rotateClass" />
</div>
<div class="inline-button-wrapper">
<input-photo class="inline-button" btn-text="Retake" ng-model="currPhoto" on-select="takePhoto()"></input-photo>
<button ng-click="acceptPhoto()" class="btn btn-default" ng-if="hideNext === true">Accept</button>
</div>
</div>