Last change
on this file since b738035 was b738035, checked in by Ema <ema_spirova@…>, 3 years ago |
signup/login server errors on front and remove location from planner
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Rev | Line | |
---|
[b738035] | 1 | <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet"
|
---|
| 2 | integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
|
---|
| 3 | <html lang="en">
|
---|
| 4 |
|
---|
| 5 | <head>
|
---|
| 6 | <meta charset="utf-8">
|
---|
| 7 | <title>Explore</title>
|
---|
| 8 | </head>
|
---|
| 9 |
|
---|
| 10 | <body>
|
---|
| 11 | <header>
|
---|
| 12 | <nav class="navbar navbar-expand-sm">
|
---|
| 13 | <strong class="navbar-brand">Trivia Trip</strong>
|
---|
| 14 | <ul class="navbar-nav ml-auto">
|
---|
| 15 | <li class="nav-item">
|
---|
| 16 | <p-autoComplete [(ngModel)]="text" [suggestions]="filteredCountries" (completeMethod)="search($event)"
|
---|
| 17 | field="name" [minLength]="1">
|
---|
| 18 | <mat-option *ngFor="let cityName of cities"
|
---|
| 19 | [value]="cityName.name">
|
---|
| 20 | {{cityName.name}}
|
---|
| 21 | </mat-option></p-autoComplete>
|
---|
| 22 | <p-button label="Search" icon="pi pi-search" [loading]="loading[0]" (click)="load(0)" id="button"></p-button>
|
---|
| 23 | </li>
|
---|
| 24 | <li class="nav-item">
|
---|
| 25 | </li>
|
---|
| 26 | </ul>
|
---|
| 27 | </nav>
|
---|
| 28 | </header>
|
---|
| 29 | </body>
|
---|
| 30 |
|
---|
| 31 | </html> |
---|
Note:
See
TracBrowser
for help on using the repository browser.