Last change
on this file since dedbf60 was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 3 months ago |
split group project and individual project into two separate folders
|
-
Property mode
set to
100644
|
File size:
566 bytes
|
Rev | Line | |
---|
[baf4cc4] | 1 | <div class="flex justify-center items-center">
|
---|
| 2 | <div class="flex flex-col">
|
---|
| 3 |
|
---|
| 4 | <form class="flex flex-col">
|
---|
| 5 | <mat-form-field [appearance]="'outline'">
|
---|
| 6 | <mat-label>Select</mat-label>
|
---|
| 7 | <mat-select (selectionChange)="onPick($event)">
|
---|
| 8 | @for (type of types; track type.id) {
|
---|
| 9 | <mat-option [value]="type.id">{{type.ime}} - {{type.cena}}</mat-option>
|
---|
| 10 | }
|
---|
| 11 | </mat-select>
|
---|
| 12 | </mat-form-field>
|
---|
| 13 |
|
---|
| 14 | <button (click)="onSubmit()" type="button" mat-flat-button>
|
---|
| 15 | Buy
|
---|
| 16 | </button>
|
---|
| 17 | </form>
|
---|
| 18 | </div>
|
---|
| 19 | </div>
|
---|
Note:
See
TracBrowser
for help on using the repository browser.