{# https://github.com/jupyterhub/jupyterhub/issues/1385 #}
{# https://github.com/jupyterhub/jupyterhub/issues/1385#issuecomment-738447175 #}
{% extends "templates/login.html" %}

{% set announcement = 'test announcement message' %}
{% set csusb_hub_title = 'Welcome to Cal State San Bernardino JupyterHub' %}
{% set csusb_cilogon = 'The following login process uses CSUSB\'s DUO login system' %}

{% block login %}
<div class="container text-center csusb">
    <h1>{{ csusb_hub_title  }}</h1>
    <h4>
      <p>{{ csusb_cilogon | safe }}</p>
      <p>For more information about the login system and HPC at CSUSB, please visit <a href="https://www.csusb.edu/high-performance-computing" target="_blank">CSUSB High Performance Computing Initiative</a></p>
    </h4>
{{ super() }}
</div>
{% endblock %}

{% block stylesheet %}
{{ super() }}
<style>
#login-main {
    margin-top: 5%;
    height: 100%;
}
</style>
{% endblock %}