- Timestamp:
- 11/04/21 23:10:39 (3 years ago)
- Branches:
- master
- Children:
- ceaed42
- Parents:
- 6a80231
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/src/app/planner/edit-planner/edit-planner.component.html
r6a80231 r6c1585f 3 3 <h3>Here you can edit your planner</h3> 4 4 5 <form >5 <form [formGroup] = "form" (ngSubmit)="onSubmit()"> 6 6 <div class="form-gorup"> 7 7 <p>Planner name</p> 8 8 <mat-form-field appearance="fill"> 9 <input matInput required type="text" name="name" placeholder="Planner name">9 <input matInput required type="text" formControlName="name" placeholder="Planner name"> 10 10 </mat-form-field> 11 11 <p>Planner description</p> 12 12 <mat-form-field appearance="fill"> 13 <textarea matInput required name="description" type="text" placeholder="Planner description"></textarea>13 <textarea matInput required formControlName="description" type="text" placeholder="Planner description"></textarea> 14 14 </mat-form-field> 15 15 </div> … … 25 25 </thead> 26 26 <tbody> 27 <tr> 28 27 <tr> 29 28 <td> <button mat-raised-button color="primary" (click)="onClickAddLocation()"> 30 29 Add locations … … 38 37 </div> 39 38 </div> 40 <button mat-raised-button color="primary" (click)="onClickSavePlanner()">39 <button mat-raised-button color="primary" > 41 40 <mat-icon>edit</mat-icon> Save 42 41 </button>
Note:
See TracChangeset
for help on using the changeset viewer.