{# 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_web_link = "For more information about HPC at CSUSB, visit <a href="https://www.csusb.edu/academic-technologies-innovation/xreal-lab-and-high-performance-computing/high-performance" target="_blank">CSUSB High Performance Computing Initiative</a>" %} #}
{% set csusb_cilogon = 'The following log in uses CSUSB\'s login system\n For details, check out this webpage' %}

{% block stylesheet %}
<link rel="stylesheet" href="{{ static_url("css/style.css") }}" type="text/css"/>
{% endblock %}

{% block login %}
<div class="container text-center csusb">
    <h1>{{ csusb_hub_title  }}</h1>
    <h4>
      <p>{{ csusb_web_link | safe }}</p>
      <p>{{ csusb_cilogon | safe }}</p>
    </h4>
{{ super() }}
</div>
{% endblock %}