Skip to content
Snippets Groups Projects
Commit 2f427c82 authored by youngsuKim-CSUSB's avatar youngsuKim-CSUSB
Browse files

Add page footer

parent 83a69434
No related branches found
No related tags found
No related merge requests found
......@@ -3,10 +3,11 @@
margin-top: auto;
margin-left: auto;
text-align: center;
width: 100%;
}
</style>
<div class="footer-bottom">
<hr style="width:50%"">
<p>This JupyterHub is provided by the </p>
<hr style="width:50%">
This JupyterHub is provided by the ITS and ATI at California State Univeristy San Bernardino
</div>
\ No newline at end of file
......@@ -14,7 +14,7 @@
{% block footer %}
<div class="footer-bottom">
<hr style="width:50%"">
<hr style="width:50%">
This JupyterHub is provided by the ITS and ATI at California State Univeristy San Bernardino
</div>
{% endblock %}
......
{% extends "templates/spawn.html" %}
{% block main %}
{{ super() }}
{% endblock %}
{% block heading %}
<div class="row col-sm-offset-2 col-sm-8">
<input class="form-control input-lg" type="range" name="gpus" value="{{ extra_resources.n_gpus }}" min="0" max="4" oninput="this.nextElementSibling.value = this.value"/>
<output>{{ extra_resources.n_gpus }}</output>
<label for="gpus">GPUs</label>
<br/>
<label for="cores">CPUS</label>
<input class="form-control input-lg" type="range" name="cores" value="{{ extra_resources.n_cpus }}" min="0" max="96" oninput="this.nextElementSibling.value = this.value"/>
<output>{{ extra_resources.n_cpus }}</output>
<br/>
<label for="ram">RAM, GB</label>
<input class="form-control input-lg" type="range" name="ram" value="8" min="1" max="512" oninput="this.nextElementSibling.value = this.value"/>
<output>8</output>
<br/>
<p>Testing spawner</p>
</div>
{% endblock %}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment