paperless-ngx/src-ui/src/app/components/dashboard/dashboard.component.html

27 lines
650 B
HTML
Raw Normal View History

2020-10-27 01:10:18 +01:00
<app-page-header title="Dashboard">
</app-page-header>
2020-10-27 17:35:10 +01:00
<p>... This space for rent</p>
<p>This page will provide more information in the future, such as access to recently scanned documents, etc.</p>
2020-10-27 01:10:18 +01:00
<div class='row'>
2020-10-27 17:35:10 +01:00
<div class="col-lg">
2020-10-27 01:10:18 +01:00
<h4>Statistics</h4>
2020-10-27 17:35:10 +01:00
<p>None yet.</p>
2020-10-27 01:10:18 +01:00
</div>
2020-10-27 17:35:10 +01:00
<div class="col-lg">
2020-10-27 01:10:18 +01:00
<h4>Upload new Document</h4>
2020-10-27 17:35:10 +01:00
<form>
<ngx-file-drop
dropZoneLabel="Drop documents here"
(onFileDrop)="dropped($event)"
(onFileOver)="fileOver($event)"
(onFileLeave)="fileLeave($event)"
dropZoneClassName="bg-light mt-4 card">
</ngx-file-drop>
</form>
2020-10-27 01:10:18 +01:00
</div>
</div>