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

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

spring security

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