[30a465f] | 1 | <h1>Counter</h1>
|
---|
| 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 |
|
---|
| 7 | <button class="btn btn-primary" (click)="incrementCounter()">Increment</button>
|
---|
[ec6ac45] | 8 |
|
---|
| 9 |
|
---|
| 10 | <div class="wrapper">
|
---|
| 11 | <div>
|
---|
| 12 | <h2>Здравствени установи</h2>
|
---|
| 13 | <input type="text" class="form-control" name="lek" placeholder="Пронајди лек">
|
---|
| 14 | <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true">
|
---|
| 15 | <thead>
|
---|
| 16 | <tr>
|
---|
| 17 | <th>Placeholder1</th>
|
---|
| 18 | <th>Placeholder2</th>
|
---|
| 19 | <th>Placeholder3</th>
|
---|
| 20 | <th>Placeholder4</th>
|
---|
| 21 | </tr>
|
---|
| 22 | </thead>
|
---|
| 23 | <tbody>
|
---|
| 24 | <tr *ngFor="">
|
---|
| 25 | <td>data1</td>
|
---|
| 26 | <td>data2</td>
|
---|
| 27 | <td>data3</td>
|
---|
| 28 | <td>data4</td>
|
---|
| 29 | </tr>
|
---|
| 30 | </tbody>
|
---|
| 31 | </table>
|
---|
| 32 | <nav aria-label="Page navigation example">
|
---|
| 33 | <ul class="pagination">
|
---|
| 34 | <li class="page-item">
|
---|
| 35 | <a class="page-link" href="#" aria-label="Previous">
|
---|
| 36 | <span aria-hidden="true">«</span>
|
---|
| 37 | <span class="sr-only">Previous</span>
|
---|
| 38 | </a>
|
---|
| 39 | </li>
|
---|
| 40 | <li class="page-item"><a class="page-link" href="#">1</a></li>
|
---|
| 41 | <li class="page-item"><a class="page-link" href="#">2</a></li>
|
---|
| 42 | <li class="page-item"><a class="page-link" href="#">3</a></li>
|
---|
| 43 | <li class="page-item">
|
---|
| 44 | <a class="page-link" href="#" aria-label="Next">
|
---|
| 45 | <span aria-hidden="true">»</span>
|
---|
| 46 | <span class="sr-only">Next</span>
|
---|
| 47 | </a>
|
---|
| 48 | </li>
|
---|
| 49 | </ul>
|
---|
| 50 | </nav>
|
---|
| 51 | </div>
|
---|
| 52 | <div>
|
---|
| 53 | <h2>Здравствени работници</h2>
|
---|
| 54 | <input type="text" class="form-control" name="apteka" placeholder="Пронајди аптека">
|
---|
| 55 | <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true">
|
---|
| 56 | <thead>
|
---|
| 57 | <tr>
|
---|
| 58 | <th>Placeholder1</th>
|
---|
| 59 | <th>Placeholder2</th>
|
---|
| 60 | <th>Placeholder3</th>
|
---|
| 61 | <th>Placeholder4</th>
|
---|
| 62 | </tr>
|
---|
| 63 | </thead>
|
---|
| 64 | <tbody>
|
---|
| 65 | <tr *ngFor="">
|
---|
| 66 | <td>data1</td>
|
---|
| 67 | <td>data2</td>
|
---|
| 68 | <td>data3</td>
|
---|
| 69 | <td>data4</td>
|
---|
| 70 | </tr>
|
---|
| 71 | </tbody>
|
---|
| 72 | </table>
|
---|
| 73 | <nav aria-label="Page navigation example">
|
---|
| 74 | <ul class="pagination">
|
---|
| 75 | <li class="page-item">
|
---|
| 76 | <a class="page-link" href="#" aria-label="Previous">
|
---|
| 77 | <span aria-hidden="true">«</span>
|
---|
| 78 | <span class="sr-only">Previous</span>
|
---|
| 79 | </a>
|
---|
| 80 | </li>
|
---|
| 81 | <li class="page-item"><a class="page-link" href="#">1</a></li>
|
---|
| 82 | <li class="page-item"><a class="page-link" href="#">2</a></li>
|
---|
| 83 | <li class="page-item"><a class="page-link" href="#">3</a></li>
|
---|
| 84 | <li class="page-item">
|
---|
| 85 | <a class="page-link" href="#" aria-label="Next">
|
---|
| 86 | <span aria-hidden="true">»</span>
|
---|
| 87 | <span class="sr-only">Next</span>
|
---|
| 88 | </a>
|
---|
| 89 | </li>
|
---|
| 90 | </ul>
|
---|
| 91 | </nav>
|
---|
| 92 | </div>
|
---|
| 93 | </div> |
---|