2021-08-18 16:40:58 +01:00
|
|
|
<ion-content class="container">
|
|
|
|
|
<div class="arrow-right">
|
|
|
|
|
<button class="btn-no-color" (click)="close()">
|
2021-10-25 15:31:43 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' " slot="end" class="arrow-right-icon" src='assets/images/icons-arrow-arrow-right.svg'></ion-icon>
|
|
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " slot="end" class="arrow-right-icon" src='assets/images/theme/gov/icons-calendar-arrow-right.svg'></ion-icon>
|
2022-10-20 15:45:10 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'doneIt' " slot="icon-only" class="arrow-right-icon" src="assets/images/theme/{{ThemeService.currentTheme}}/icons-calendar-arrow-right.svg"></ion-icon>
|
2021-08-18 16:40:58 +01:00
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="buttons">
|
2021-09-23 12:13:20 +01:00
|
|
|
<button (click)="takePicture()" full class="btn-cancel hide-desktop" shape="round" >Tirar Fotografia</button>
|
2021-09-21 14:05:59 +01:00
|
|
|
<button (click)="addPicture()" full class="btn-cancel" shape="round" >Anexar Fotografia</button>
|
2021-10-06 17:27:49 +01:00
|
|
|
<button (click)="addDocument()" class="btn-cancel" shape="round" >Documento</button>
|
2021-09-14 15:57:24 +01:00
|
|
|
<button (click)="addDocGestaoDocumental()" class="btn-cancel" shape="round" >Anexar Documento (G.D.)</button>
|
2021-08-18 16:40:58 +01:00
|
|
|
<div class="solid"></div>
|
2021-09-21 14:05:59 +01:00
|
|
|
<button (click)="bookMeeting()" class="btn-cancel" shape="round" >Novo Evento</button>
|
2021-08-18 16:40:58 +01:00
|
|
|
<button (click)="close()" full class="btn-cancel mobile-only" shape="round" >Cancelar</button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</ion-content>
|