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
              Enter Information
12
              <span></span>
13
            </div>
14
          </div>
15
          <div class="step {{step2}}">
16
            <div>
17
              Add Interfaces
18
              <span></span>
19
            </div>
20
          </div>
21
          <div class="step {{step3}}">
22
            <div>
23
              Finish
24
              <span></span>
25
            </div>
26
          </div>
27
        </div>
28
      </div>
29
      <div class="content">
30
        <div>
31
          <div class="animated fadeInRight stepContent">
32
            <div>
33
              <journal-info-form *ngIf="showForm"
34
                                 #registerJournal
35
                                 (emittedInfo)="getCurrentRepo($event)"></journal-info-form>
36

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