Changeset 46c298d for Farmatiko/ClientApp/src/app/home
- Timestamp:
- 07/22/20 13:08:15 (4 years ago)
- Branches:
- master
- Children:
- ca0dae7
- Parents:
- 1f041f6
- Location:
- Farmatiko/ClientApp/src/app/home
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/src/app/home/home.component.css
r1f041f6 r46c298d 1 1 .wrapper { 2 3 4 2 display: flex; 3 justify-content: space-around; 4 padding-top: 50px; 5 5 } 6 6 7 7 nav { 8 8 float: right; 9 9 } 10 10 11 11 table { 12 12 margin-top: 25px; 13 13 } -
Farmatiko/ClientApp/src/app/home/home.component.html
r1f041f6 r46c298d 1 1 <div class="wrapper"> 2 2 <div> 3 3 <h2>Лекови</h2> 4 4 <input type="text" class="form-control" name="lek" placeholder="Пронајди лек"> 5 5 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true"> 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 6 <thead> 7 <tr> 8 <th>Placeholder1</th> 9 <th>Placeholder2</th> 10 <th>Placeholder3</th> 11 <th>Placeholder4</th> 12 </tr> 13 </thead> 14 <tbody> 15 <tr *ngFor=""> 16 <td>data1</td> 17 <td>data2</td> 18 <td>data3</td> 19 <td>data4</td> 20 </tr> 21 </tbody> 22 22 </table> 23 23 <nav aria-label="Page navigation example"> 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 24 <ul class="pagination"> 25 <li class="page-item"> 26 <a class="page-link" href="#" aria-label="Previous"> 27 <span aria-hidden="true">«</span> 28 <span class="sr-only">Previous</span> 29 </a> 30 </li> 31 <li class="page-item"><a class="page-link" href="#">1</a></li> 32 <li class="page-item"><a class="page-link" href="#">2</a></li> 33 <li class="page-item"><a class="page-link" href="#">3</a></li> 34 <li class="page-item"> 35 <a class="page-link" href="#" aria-label="Next"> 36 <span aria-hidden="true">»</span> 37 <span class="sr-only">Next</span> 38 </a> 39 </li> 40 </ul> 41 </nav> 42 </div> 43 <div> 44 44 <h2>Аптеки</h2> 45 45 <input type="text" class="form-control" name="apteka" placeholder="Пронајди аптека"> 46 46 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true"> 47 47 <thead> 48 48 <tr> 49 50 51 52 49 <th>Placeholder1</th> 50 <th>Placeholder2</th> 51 <th>Placeholder3</th> 52 <th>Placeholder4</th> 53 53 </tr> 54 55 54 </thead> 55 <tbody> 56 56 <tr *ngFor=""> 57 58 59 60 57 <td>data1</td> 58 <td>data2</td> 59 <td>data3</td> 60 <td>data4</td> 61 61 </tr> 62 62 </tbody> 63 63 </table> 64 64 <nav aria-label="Page navigation example"> 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 65 <ul class="pagination"> 66 <li class="page-item"> 67 <a class="page-link" href="#" aria-label="Previous"> 68 <span aria-hidden="true">«</span> 69 <span class="sr-only">Previous</span> 70 </a> 71 </li> 72 <li class="page-item"><a class="page-link" href="#">1</a></li> 73 <li class="page-item"><a class="page-link" href="#">2</a></li> 74 <li class="page-item"><a class="page-link" href="#">3</a></li> 75 <li class="page-item"> 76 <a class="page-link" href="#" aria-label="Next"> 77 <span aria-hidden="true">»</span> 78 <span class="sr-only">Next</span> 79 </a> 80 </li> 81 </ul> 82 </nav> 83 </div> 84 84 </div>
Note:
See TracChangeset
for help on using the changeset viewer.