Skip to content
Snippets Groups Projects
Select Git revision
  • d91b2e5b473088f38dd6035967f94fef618dedba
  • master default protected
  • cvmfs-apt-repo-update
  • fix/owncloud-missing-safeguard
  • e-infra2
  • ci-megalinter-speedup
  • envri-hub-new-aai
  • egi-b2drop-no-collapse
  • lfs
  • gpu_staging
  • resurrect-testing-ownloud
  • experiments/collab
  • update_claim_group_keys
  • envri-hub
  • enable_rtc
  • eosc-ui
  • future/jupyterhub-5.x
  • versioning
  • eosc-templating
  • staging1-raw-image
  • token-exchange
21 results

egi-login.html

Blame
  • egi-login.html 2.52 KiB
    <!-- htmlhint doctype-first:false -->
    {% extends "page.html" %}
    {% if announcement_login %}
      {% set announcement = announcement_login %}
    {% endif %}
    
    {% block nav_bar_right_items %}
    <li>
      <span id="user-guide">
      <a role="button" class="navbar-btn btn-sm btn btn-egi" href="https://docs.egi.eu/users/notebooks/">
          <i aria-hidden="true" class="fa fa-book"></i> User Guide</a>
      </span>
    </li>
    {% endblock %}
    
    {% block main %}
    {% block login %}
    <div id="login-main" class="container">
    <div class="jumbotron">
        {% block main_intro %}
        <h1><img alt="Notebooks Logo" src="{{ static_url('images/egi-icon-notebooks.svg') }}" height="100">Notebooks</h1>
        <p>
        Notebooks is an environment based on <a href="http://jupyter.org/">Jupyter</a> and
        the <a href="https://www.egi.eu/services/cloud-compute/">EGI cloud service</a> that
        offers a browser-based, scalable tool for interactive data analysis. The Notebooks
        environment provides users with notebooks where they can combine text, mathematics,
        computations and rich media output.
        </p>
        {% endblock main_intro %}
        {% block checkin_button %}
        <div class="spacer-sm"></div>
        <p class="text-center">
              <a role="button" class="btn button-blue-background" href="{{authenticator_login_url}}">
                Continue with ENVRI-ID
              </a>
        </p>
        <div class="spacer-sm"></div>
        {% endblock checkin_button %}
    </div>
    
    </div>
    {% endblock login %}
    
    {% block footer %}
    <footer class="footer">
      <div class="container">
        <div class="row">
          <div class="col-sm-1">
            <img alt="EU logo" src="{{ static_url('images/eu-flag.png') }}" height="40">
          </div>
          <div class="col-sm-1">
            <a href="https://www.egi.eu/projects/egi-ace/">
            <img alt="EGI-ACE logo" src="{{ static_url('images/egi-ace.png') }}" height="40">
            </a>
          </div>
          <div class="col-sm-1">
            <a href="https://www.cesnet.cz/?lang=en">
            <img alt="CESNET logo" src="{{ static_url('images/cesnet.png') }}" height="40">
            </a>
          </div>
          <div class="col-sm-5">
            {{ service_name }} is a service provided by <a href="https://www.cesnet.cz/?lang=en">CESNET</a>,
            co-funded by <a href="https://www.egi.eu/projects/egi-ace/">EGI-ACE</a>.
          </div>
          <div class="col-sm-4 text-right">
            <a href="https://notebooks.egi.eu/policies/privacy-policy.html">Privacy Notice</a> |
            <a href="https://notebooks.egi.eu/policies/terms-of-use.html">Terms of Use</a>
          </div>
        </div>
      </div>
    </footer>
    {% endblock %}
    
    {% endblock %}