You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
523 B
HTML
19 lines
523 B
HTML
|
6 years ago
|
<div class="centerDiv changeImgBtn">
|
||
|
|
<ion-button class="btnImge" color="customnavy" ion-button (click)="openFile()" expand="block" fill="outline">
|
||
|
|
<!-- <ion-icon class="changeIcon" name="camera" ></ion-icon> -->
|
||
|
|
{{'userProfile,changeImg' | translate}}
|
||
|
|
|
||
|
|
</ion-button>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<div *ngIf="data" class="uploader-icons">
|
||
|
|
<ion-item lines="none">
|
||
|
|
|
||
|
|
<p slot="start"> <img [src]="attachmentImg" /> {{data.name}}</p>
|
||
|
|
<p slot="end"><img [src]="deleteImg" (click)="deleteFiles(i)"></p>
|
||
|
|
</ion-item>
|
||
|
|
</div>
|
||
|
|
|