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

Last change on this file since 6fe77af was bdd6491, checked in by Ema <ema_spirova@…>, 3 years ago

pre final presentation

  • Property mode set to 100644
File size: 689 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"
15 class="p-button-outlined p-button-rounded p-button-help" (click)="onFormSubmitPlanner(plannerDto)"></button>
16 </div>
17
18
Note: See TracBrowser for help on using the repository browser.