source: Farmatiko/ClientApp/src/app/counter/counter.component.html@ 785b8bd

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

Dashboards v0.1

  • Property mode set to 100644
File size: 3.2 KB
RevLine 
[96108d8]1<!-- <h1>Counter</h1>
[30a465f]2
3<p>This is a simple example of an Angular component.</p>
4
5<p aria-live="polite">Current count: <strong>{{ currentCount }}</strong></p>
6
[96108d8]7<button class="btn btn-primary" (click)="incrementCounter()">Increment</button> -->
[ec6ac45]8
[785b8bd]9<app-nav-menu></app-nav-menu>
[ec6ac45]10
11<div class="wrapper">
12 <div>
13 <h2>Здравствени установи</h2>
14 <input type="text" class="form-control" name="lek" placeholder="Пронајди лек">
15 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true">
16 <thead>
17 <tr>
18 <th>Placeholder1</th>
19 <th>Placeholder2</th>
20 <th>Placeholder3</th>
21 <th>Placeholder4</th>
22 </tr>
23 </thead>
24 <tbody>
25 <tr *ngFor="">
26 <td>data1</td>
27 <td>data2</td>
28 <td>data3</td>
29 <td>data4</td>
30 </tr>
31 </tbody>
32 </table>
33 <nav aria-label="Page navigation example">
34 <ul class="pagination">
35 <li class="page-item">
36 <a class="page-link" href="#" aria-label="Previous">
37 <span aria-hidden="true">&laquo;</span>
38 <span class="sr-only">Previous</span>
39 </a>
40 </li>
41 <li class="page-item"><a class="page-link" href="#">1</a></li>
42 <li class="page-item"><a class="page-link" href="#">2</a></li>
43 <li class="page-item"><a class="page-link" href="#">3</a></li>
44 <li class="page-item">
45 <a class="page-link" href="#" aria-label="Next">
46 <span aria-hidden="true">&raquo;</span>
47 <span class="sr-only">Next</span>
48 </a>
49 </li>
50 </ul>
51 </nav>
52 </div>
53 <div>
54 <h2>Здравствени работници</h2>
55 <input type="text" class="form-control" name="apteka" placeholder="Пронајди аптека">
56 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true">
57 <thead>
58 <tr>
59 <th>Placeholder1</th>
60 <th>Placeholder2</th>
61 <th>Placeholder3</th>
62 <th>Placeholder4</th>
63 </tr>
64 </thead>
65 <tbody>
66 <tr *ngFor="">
67 <td>data1</td>
68 <td>data2</td>
69 <td>data3</td>
70 <td>data4</td>
71 </tr>
72 </tbody>
73 </table>
74 <nav aria-label="Page navigation example">
75 <ul class="pagination">
76 <li class="page-item">
77 <a class="page-link" href="#" aria-label="Previous">
78 <span aria-hidden="true">&laquo;</span>
79 <span class="sr-only">Previous</span>
80 </a>
81 </li>
82 <li class="page-item"><a class="page-link" href="#">1</a></li>
83 <li class="page-item"><a class="page-link" href="#">2</a></li>
84 <li class="page-item"><a class="page-link" href="#">3</a></li>
85 <li class="page-item">
86 <a class="page-link" href="#" aria-label="Next">
87 <span aria-hidden="true">&raquo;</span>
88 <span class="sr-only">Next</span>
89 </a>
90 </li>
91 </ul>
92 </nav>
93 </div>
[96108d8]94</div>
Note: See TracBrowser for help on using the repository browser.