source: trip-planner-front/src/app/create-initial-planner/create-initial-planner.component.html

Last change on this file was 571e0df, checked in by Ema <ema_spirova@…>, 2 years ago

final presentation

  • Property mode set to 100644
File size: 647 bytes
Line 
1<div mat-dialog-content>
2 <p>Planner name</p>
3 <mat-form-field appearance="fill">
4 <input matInput type="text" [(ngModel)]="plannerDto.name" name="plannerName" placeholder="Planner name">
5
6 </mat-form-field>
7 <p>Planner description</p>
8 <mat-form-field appearance="fill">
9 <textarea matInput name="description" [(ngModel)]="plannerDto.description" type="text"
10 placeholder="Planner description"></textarea>
11 </mat-form-field>
12</div>
13<div mat-dialog-actions>
14 <button pButton pRipple type="button" label="Save" class="p-button-outlined p-button-rounded p-button-help"
15 (click)="onFormSubmitPlanner(plannerDto)"></button>
16</div>
Note: See TracBrowser for help on using the repository browser.