2020-12-21 16:37:44 +01:00
|
|
|
<ion-header class="ion-no-border">
|
|
|
|
|
<ion-toolbar class="header-toolbar">
|
|
|
|
|
<div class="main-header">
|
2021-07-08 13:41:27 +01:00
|
|
|
<div class="title-content width-100">
|
2020-12-21 16:37:44 +01:00
|
|
|
<div class="left">
|
2021-04-16 15:49:38 +01:00
|
|
|
<button class="btn-no-color" (click)="close()">
|
2021-10-25 13:21:48 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'default' " slot="end" src='assets/images/icons-arrow-arrow-left.svg'></ion-icon>
|
2022-10-18 14:51:24 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'doneIt' " src="assets/images/theme/doneIt/icons-calendar-arrow-left.svg"></ion-icon>
|
2021-10-25 13:21:48 +01:00
|
|
|
<ion-icon *ngIf="ThemeService.currentTheme == 'gov' " slot="end" src='assets/images/theme/gov/icons-calendar-arrow-left.svg'></ion-icon>
|
2021-04-16 15:49:38 +01:00
|
|
|
</button>
|
2020-12-21 16:37:44 +01:00
|
|
|
</div>
|
|
|
|
|
<div class="middle">
|
|
|
|
|
<ion-label class="title">Novo Grupo</ion-label>
|
|
|
|
|
</div>
|
2021-10-28 15:40:41 +01:00
|
|
|
<div *ngIf="groupName">
|
|
|
|
|
<button class="btn-no-color btn-criar" (click)="createGroup()">
|
|
|
|
|
<ion-label>Criar grupo</ion-label>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
2020-12-21 16:37:44 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ion-toolbar>
|
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
|
|
<ion-content>
|
|
|
|
|
<div class="main-content">
|
|
|
|
|
<div class="item-container">
|
2021-01-21 16:27:04 +01:00
|
|
|
<ion-input [(ngModel)]="groupName" placeholder="Título"></ion-input>
|
2020-12-21 16:37:44 +01:00
|
|
|
</div>
|
2021-10-28 15:40:41 +01:00
|
|
|
<div class="item-container-no-border">
|
2021-01-04 16:03:41 +01:00
|
|
|
<ion-checkbox (ionChange)="_ionChange($event)" color="primary"></ion-checkbox>
|
2020-12-21 16:37:44 +01:00
|
|
|
<ion-label>Grupo Ultra-secreto</ion-label>
|
2021-01-04 16:03:41 +01:00
|
|
|
</div>
|
2020-12-21 16:37:44 +01:00
|
|
|
|
2021-01-04 16:03:41 +01:00
|
|
|
<div *ngIf="showDuration" class="container-div">
|
2021-11-03 15:35:01 +01:00
|
|
|
<div class="ion-item-class-2 width-100">
|
2020-12-21 16:37:44 +01:00
|
|
|
<div class="ion-icon-class">
|
|
|
|
|
<ion-icon slot="start" src="assets/images/icons-duration.svg"></ion-icon>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="ion-input-class">
|
2021-01-06 15:28:42 +01:00
|
|
|
<ion-input (click)="showPicker()" [(ngModel)]="displayDuration" placeholder="Duração"></ion-input>
|
2020-12-21 16:37:44 +01:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-10-28 15:40:41 +01:00
|
|
|
|
|
|
|
|
</div>
|
2020-12-21 16:37:44 +01:00
|
|
|
</ion-content>
|