Project

General

Profile

1
<div class="uk-grid uk-grid-stack">
2
  <div class="uk-width-expand@m uk-first-column">
3
    <div class="uk-margin-medium-bottom">
4
      <h1 class="uk-article-title">Register your datasource</h1>
5
    </div>
6
    <div class="wizard">
7
      <div class="wizardBreadcrumbs">
8
        <div class="steps clearfix">
9
          <div class="step active">
10
            <div>
11
              Select repository
12
              <span></span>
13
            </div>
14
          </div>
15
          <div class="step {{step2}}">
16
            <div>
17
              Enter Information
18
              <span></span>
19
            </div>
20
          </div>
21
          <div class="step {{step3}}">
22
            <div>
23
              Add Interfaces
24
              <span></span>
25
            </div>
26
          </div>
27
          <div class="step {{step4}}">
28
            <div>
29
              Finish
30
              <span></span>
31
            </div>
32
          </div>
33
        </div>
34
      </div>
35
      <div class="content">
36
        <div>
37
          <div class="animated fadeInRight stepContent">
38
            <div>
39
              <register-datasource-shareable *ngIf="showRepositories"
40
                                         #datasourcesByCountry
41
                                         [mode]="'re3data'"
42
                                         (emitRepoId)="getRepoId($event)"></register-datasource-shareable>
43

    
44
              <datasource-info-form *ngIf="showForm"
45
                                    #updateDatasource
46
                                    [datasourceId]="datasourceId"
47
                                    (emittedInfo)="getCurrentRepo($event)"></datasource-info-form>
48

    
49
              <div *ngIf="showInterfaces && repo && repoInterfaces">
50
                <form [formGroup]="group">
51
                  <form-repeat [component]="updateDatasourceInterfaces"
52
                               [parentGroup]="group"
53
                               [description]="interfaceFormDesc"
54
                               [name]="'repository-interfaces'"
55
                               [data]="repoInterfaces"
56
                               [otherData]="repo">
57
                  </form-repeat>
58
                </form>
59
              </div>
60
              <div *ngIf="showFinish" class="row openAIRECompliantLogoDownload">
61
                <div class="col-lg-12">
62
                  <div class="col-md-12">
63
                    <div class="gwt-HTML">
64
                      <div class="openAIRECompliantLogo">
65
                        <h2 class="openAIRECompliantLogoMessage">
66
                          Congratulations! Your repository was successfully registered in OpenAIRE. You can download this logo to use in your site.
67
                        </h2>
68
                        <img src="assets/imgs/3_0ValidatedLogo.png" alt="OpenAireCompliant">
69
                      </div>
70
                    </div>
71
                    <a>
72
                      Download
73
                      <i class="fa fa-download" style=""></i>
74
                    </a>
75
                  </div>
76
                </div>
77
              </div>
78
            </div>
79
          </div>
80
        </div>
81
      </div>
82
      <div class="wizardActions">
83
        <button *ngIf="!showRepositories" class="uk-button uk-button-grey-light" type="button" (click)="moveBackAStep()">
84
          <i class="fa fa-angle-double-left"></i>
85
          Back
86
        </button>
87
        <button *ngIf="!showFinish" class="uk-button uk-button-grey-light" type="button" (click)="moveAStep()">
88
          Next
89
          <i class="fa fa-angle-double-right"></i>
90
        </button>
91
      </div>
92
    </div>
93
  </div>
94
  <div class="tm-sidebar uk-width-1-4@m">
95
    <div>
96
      <div class="uk-card uk-card-body uk-card-default sidemenu">
97
        <h3 class="el-title uk-h3 uk-heading-bullet">Info</h3>
98
        <p class="small">
99
          Use the form on the right to add your repository or journal in OpenAIRE. If you want to find more information about this process
100
          <!-- TARGET FILE MISSING! jsps/manuals/user-manual.pdf -->
101
          <a target="_blank" href="#">click here</a>
102
          .
103
        </p>
104
        <div class="uk-alert uk-alert-default small">
105
          The official repository/journal administrator (his/her email address being retrieved from the OAI-PMH verb
106
          <b>Identify</b>
107
          ) will be contacted and informed about registration request. So please make sure that you are either this person or have access to the email address, or that you have notified them.
108
        </div>
109
        <p class="small">
110
          For any problems or questions please contact the
111
          <a class="external" target="_blank" href="https://www.openaire.eu/support/helpdesk" >
112
            OpenAIRE helpdesk
113
          </a>
114
          .
115
        </p>
116
      </div>
117
    </div>
118
  </div>
119
</div>
(5-5/10)