Revize e63c2d6c
Přidáno uživatelem castic96 před téměř 5 roky(ů)
fe/fulltextsearch/src/app/app.component.html | ||
---|---|---|
1 |
<div class="test"> |
|
2 |
<h1 style="text-align: center">Hello in {{title}} frontend</h1> |
|
3 |
<form #queryForm="ngForm" (ngSubmit)="sendQuery(queryForm.value)"> |
|
4 |
<span><b>Object query:</b> </span>{{ queryForm.value | json }} |
|
5 |
<div class="input-group mb-3"> |
|
6 |
<input type="text" class="form-control" placeholder="Query" aria-describedby="basic-addon2" ngModel name="query"> |
|
7 |
<div class="input-group-append"> |
|
8 |
<button class="btn btn-outline-secondary" type="submit">Search</button> |
|
9 |
</div> |
|
10 |
</div> |
|
11 |
|
|
12 |
<div class="form-group"> |
|
13 |
<label for="exampleFormControlTextarea1">Response:</label> |
|
14 |
<textarea readonly class="form-control" id="exampleFormControlTextarea1" rows="10">{{response.response}}</textarea> |
|
15 |
</div> |
|
16 |
</form> |
|
1 |
<div> |
|
2 |
<app-header></app-header> |
|
3 |
<router-outlet></router-outlet> |
|
17 | 4 |
</div> |
18 |
|
|
19 |
<!-- Routing --> |
|
20 |
<router-outlet></router-outlet> |
Také k dispozici: Unified diff
Re #7724: Implementace architektury FE
- počáteční inicializace home page
- počáteční inicializace shared-components/search-component
- úprava routing modulu