aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/login.html
blob: 68510aa6086b4f50f3a9091879ea8354a04851fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{%extends "base.html"%}

{%block title%}Data Upload{%endblock%}

{%block contents%}
<div class="row">
  <h1 class="heading">log in</h1>

  <div class="explainer">
    <p>
      This system enables you to upload data onto GeneNetwork. In order to do
      that correctly, we need to know who you are.</p>
    <p>
      If you already have an account with GeneNetwork, you can simply click the
      login button below, after which you can upload your data.<br />
    </p>
    <a href="{{authserver_authorise_uri()}}" class="btn btn-primary"
       style="display:block;width:15em;align:center;margin:1em 3em;">
          log in</a>
    <p>
      If you do not have an account with GeneNetwork, go to
      <a href="{{gn2server_uri()}}"
         title="GeneNetwork Service."
         target="_blank">GeneNetwork</a>
      and register for an account, then come back here to login and upload.</a>
  </div>
</div>

{%endblock%}