aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/dataset-load/dataset-load.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/_elements/dataset-load/dataset-load.component.html')
-rw-r--r--frontend/src/app/_elements/dataset-load/dataset-load.component.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/dataset-load/dataset-load.component.html b/frontend/src/app/_elements/dataset-load/dataset-load.component.html
new file mode 100644
index 00000000..934aa5eb
--- /dev/null
+++ b/frontend/src/app/_elements/dataset-load/dataset-load.component.html
@@ -0,0 +1,16 @@
+<div class="container">
+ <input class="form-control mb-5" type="file" class="upload" (change)="changeListener($any($event).target.files)">
+
+ <table class="table table-bordered table-light mt-5">
+ <thead>
+ <tr>
+ <th *ngFor="let item of lines[0]; let i = index">{{item}}</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr *ngFor="let item of linesR[0]; let i = index">
+ <td *ngFor="let itemm of lines[0]; let j = index">{{item[j]}}</td>
+ </tr>
+ </tbody>
+ </table>
+ </div> \ No newline at end of file