source: Farmatiko/ClientApp/src/app/counter/counter.component.html@ 4b342bb

Last change on this file since 4b342bb was 4b342bb, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago

Connecting front to back

  • Property mode set to 100644
File size: 3.2 KB
Line 
1<app-nav-menu></app-nav-menu>
2
3<div class="wrapper">
4 <div>
5 <h2>Здравствени установи</h2>
6 <input type="text" class="form-control" name="lek" placeholder="Пронајди лек">
7 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="facilities">
8 <thead>
9 <tr>
10 <th>Име</th>
11 <th>Општина</th>
12 <th>Адреса</th>
13 <th>Тип на установа</th>
14 <th>Е-пошта</th>
15 <th>Телефон</th>
16 </tr>
17 </thead>
18 <tbody>
19 <tr *ngFor="let facility of facilities">
20 <td>{{ facility.Name }}</td>
21 <td>{{ facility.Municipality }}</td>
22 <td>{{ facility.Address }}</td>
23 <td>{{ facility.Type }}</td>
24 <td>{{ facility.Email }}</td>
25 <td>{{ facility.Phone }}</td>
26 </tr>
27 </tbody>
28 </table>
29 <nav aria-label="Page navigation example">
30 <ul class="pagination">
31 <li class="page-item">
32 <a class="page-link" href="#" aria-label="Previous">
33 <span aria-hidden="true">&laquo;</span>
34 <span class="sr-only">Previous</span>
35 </a>
36 </li>
37 <li class="page-item"><a class="page-link" href="#">1</a></li>
38 <li class="page-item"><a class="page-link" href="#">2</a></li>
39 <li class="page-item"><a class="page-link" href="#">3</a></li>
40 <li class="page-item">
41 <a class="page-link" href="#" aria-label="Next">
42 <span aria-hidden="true">&raquo;</span>
43 <span class="sr-only">Next</span>
44 </a>
45 </li>
46 </ul>
47 </nav>
48 </div>
49 <div>
50 <h2>Здравствени работници</h2>
51 <input type="text" class="form-control" name="apteka" placeholder="Пронајди аптека">
52 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true">
53 <thead>
54 <tr>
55 <th>Placeholder1</th>
56 <th>Placeholder2</th>
57 <th>Placeholder3</th>
58 <th>Placeholder4</th>
59 </tr>
60 </thead>
61 <tbody>
62 <tr *ngFor="">
63 <td>data1</td>
64 <td>data2</td>
65 <td>data3</td>
66 <td>data4</td>
67 </tr>
68 </tbody>
69 </table>
70 <nav aria-label="Page navigation example">
71 <ul class="pagination">
72 <li class="page-item">
73 <a class="page-link" href="#" aria-label="Previous">
74 <span aria-hidden="true">&laquo;</span>
75 <span class="sr-only">Previous</span>
76 </a>
77 </li>
78 <li class="page-item"><a class="page-link" href="#">1</a></li>
79 <li class="page-item"><a class="page-link" href="#">2</a></li>
80 <li class="page-item"><a class="page-link" href="#">3</a></li>
81 <li class="page-item">
82 <a class="page-link" href="#" aria-label="Next">
83 <span aria-hidden="true">&raquo;</span>
84 <span class="sr-only">Next</span>
85 </a>
86 </li>
87 </ul>
88 </nav>
89 </div>
90</div>
Note: See TracBrowser for help on using the repository browser.