argos/dmp-frontend/src/app/ui/dmp/new/start-new-dmp-dialogue/start-new-dmp-dialog.compon...

49 lines
2.0 KiB
HTML
Raw Normal View History

2024-03-15 14:44:54 +01:00
<div class="start-new-dmp-dialog-wrapper">
<div class="d-flex justify-content-between">
<div class="pl-0 col-auto"><a class="logo"><img class="logo" src="../../../assets/images/new-dmp-logo.png" onerror="this.style.display='none'"></a></div>
<div class="col-auto close-btn" (click)="close()">
<mat-icon class="close-icon">close</mat-icon>
</div>
2020-09-28 14:44:32 +02:00
</div>
2024-03-15 14:44:54 +01:00
<div class="content">
<div class="col-12 p-0">
2024-03-21 19:57:51 +01:00
<h1 class="title p-0">{{'START-NEW-PLAN-DIALOG.TITLE' | translate}}</h1>
2023-10-27 17:56:19 +02:00
</div>
2024-03-15 14:44:54 +01:00
<div class="col-12 p-0">
2024-03-21 19:57:51 +01:00
<p class="text">{{'START-NEW-PLAN-DIALOG.MESSAGE' | translate}}</p>
2023-10-27 17:56:19 +02:00
</div>
<div class="col-12">
2024-03-15 14:44:54 +01:00
<div class="d-flex justify-content-between align-items-center">
<div class="col-auto p-0">
2023-10-27 17:56:19 +02:00
<button type="button" class="normal-btn upload-btn d-flex flex-row align-items-center" (click)="uploadFile($event)">
<mat-icon class="pr-2">file_upload</mat-icon>
2024-03-21 19:57:51 +01:00
{{ 'START-NEW-PLAN-DIALOG.IMPORT-FROM-FILE' | translate }}
2023-10-27 17:56:19 +02:00
</button>
</div>
2024-03-15 14:44:54 +01:00
<div class="col-auto p-0">
2024-03-21 19:57:51 +01:00
<p class="m-0">{{ 'START-NEW-PLAN-DIALOG.OR' | translate }}</p>
2023-10-27 17:56:19 +02:00
</div>
2024-03-15 14:44:54 +01:00
<div class="col-auto p-0">
2023-10-27 17:56:19 +02:00
<button type="button" class="normal-btn font-weight-bold d-flex flex-row align-items-center" (click)="startWizard()">
<mat-icon>chevron_right</mat-icon>
2024-03-21 19:57:51 +01:00
{{ 'START-NEW-PLAN-DIALOG.START-WIZARD' | translate }}
2023-10-27 17:56:19 +02:00
</button>
</div>
</div>
</div>
2020-09-28 14:44:32 +02:00
</div>
2024-03-15 14:44:54 +01:00
<div class="d-flex justify-content-between pt-4">
<div class="pr-2">
2023-10-27 17:56:19 +02:00
<mat-icon class="material-icons-outlined warn">info</mat-icon>
</div>
2024-03-15 14:44:54 +01:00
<span>
2024-03-21 19:57:51 +01:00
<b>{{'START-NEW-PLAN-DIALOG.IMPORT' | translate }}</b> {{'START-NEW-PLAN-DIALOG.FUNCTION-SUPPORTS' | translate }}
<b>{{'START-NEW-PLAN-DIALOG.JSON-FILES' | translate }}</b> {{'START-NEW-PLAN-DIALOG.PRODUCED' | translate }}
<b><a href="https://github.com/RDA-DMP-Common/RDA-DMP-Common-Standard" target="_blank">{{'START-NEW-PLAN-DIALOG.RDA-SPECIFICATIONS' | translate }}</a></b>
{{'START-NEW-PLAN-DIALOG.MACHINE-ACTIONABLE' | translate }}
2020-09-28 14:44:32 +02:00
</span>
</div>
2024-03-15 14:44:54 +01:00
</div>