Last change
on this file since ef1219a was ef1219a, checked in by Mile Jankuloski <mile.jankuloski@…>, 4 years ago |
Handled REST API calls, searchbars and paginators implemented, overall frontend improvment
|
-
Property mode
set to
100644
|
File size:
2.6 KB
|
Line | |
---|
1 | <header>
|
---|
2 | <nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3">
|
---|
3 | <div class="container">
|
---|
4 | <a class="navbar-brand" [routerLink]="['/']"><img src="../../assets/logo.png"></a>
|
---|
5 | <button class="navbar-toggler"
|
---|
6 | type="button"
|
---|
7 | data-toggle="collapse"
|
---|
8 | data-target=".navbar-collapse"
|
---|
9 | aria-label="Toggle navigation">
|
---|
10 | <span class="navbar-toggler-icon"></span>
|
---|
11 | </button>
|
---|
12 | <div class="navbar-collapse collapse d-sm-inline-flex flex-sm-row-reverse">
|
---|
13 | <ul class="navbar-nav flex-grow">
|
---|
14 | <li>Administration panel</li>
|
---|
15 | </ul>
|
---|
16 | </div>
|
---|
17 | </div>
|
---|
18 | </nav>
|
---|
19 | </header>
|
---|
20 | <mat-tab-group mat-stretch-tabs>
|
---|
21 | <mat-tab label="Claiming requests">
|
---|
22 | <div class="wrapper">
|
---|
23 | <div>
|
---|
24 | <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true">
|
---|
25 | <thead>
|
---|
26 | <tr>
|
---|
27 | <th>Account</th>
|
---|
28 | <th>Pharmacy</th>
|
---|
29 | <th>Action</th>
|
---|
30 | </tr>
|
---|
31 | </thead>
|
---|
32 | <tbody>
|
---|
33 | <tr *ngFor="">
|
---|
34 | <td>data1</td>
|
---|
35 | <td>data2</td>
|
---|
36 | <td>data3</td>
|
---|
37 | </tr>
|
---|
38 | </tbody>
|
---|
39 | </table>
|
---|
40 | </div>
|
---|
41 | <mat-tab label="Manage accounts">
|
---|
42 | <div class="wrapper">
|
---|
43 | <div>
|
---|
44 | <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true">
|
---|
45 | <thead>
|
---|
46 | <tr>
|
---|
47 | <th>Account</th>
|
---|
48 | <th>Actions</th>
|
---|
49 | </tr>
|
---|
50 | </thead>
|
---|
51 | <tbody>
|
---|
52 | <tr *ngFor="">
|
---|
53 | <td>data1</td>
|
---|
54 | <td>data2</td>
|
---|
55 | </tr>
|
---|
56 | </tbody>
|
---|
57 | </table>
|
---|
58 | </div>
|
---|
59 | <mat-tab label="Create new account">
|
---|
60 | <div class="createform">
|
---|
61 | <mat-form-field appearance="fill">
|
---|
62 | <mat-label>Name</mat-label>
|
---|
63 | <input matInput>
|
---|
64 | </mat-form-field><br>
|
---|
65 | <mat-form-field appearance="fill">
|
---|
66 | <mat-label>Email</mat-label>
|
---|
67 | <input matInput>
|
---|
68 | </mat-form-field><br>
|
---|
69 | <mat-form-field appearance="fill">
|
---|
70 | <mat-label>Password</mat-label>
|
---|
71 | <input matInput>
|
---|
72 | </mat-form-field><br>
|
---|
73 | <button mat-raised-button color="primary">Create</button>
|
---|
74 | </div> |
---|
Note:
See
TracBrowser
for help on using the repository browser.