{# https://github.com/jupyterhub/jupyterhub/issues/1385 #} {# https://github.com/jupyterhub/jupyterhub/issues/1385#issuecomment-738447175 #} {% extends "templates/login.html" %} {% set announcement = 'We are testing customized pages' %} {% 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>Visit <a href="https://www.csusb.edu/high-performance-computing" target="_blank">CSUSB High Performance Computing Initiative</a> for more information </p> </h4> </div> {{ super() }} <div id="login-cilogon-info" class="service-login"> <h5> <p>Be sure to choose <strong>California State University San Bernerdino</strong> on the next page instead of <strong>ORCID</strong> or something else</p> </h5> </div> {% endblock %} {% block stylesheet %} {{ super() }} <style> #login-main{ margin-top: 1%; height: 100%; } #login-cilogon-info{ text-align: center; display: table-cell; vertical-align: middle; margin: auto auto auto auto; padding-left: 20px; width: 350px; } </style> {% endblock %}