source: Farmatiko/ClientApp/src/app/home/home.component.html@ d2e69be

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

Dashboards v0.1

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