mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-14 13:33:00 +00:00

- index no longer requires login, it's just a big fat login button - home has stop, start, admin buttons - admin doesn't do anything yet - add jhapi javascript client for REST API
17 lines
286 B
HTML
17 lines
286 B
HTML
{% extends "page.html" %}
|
|
|
|
{% block login_widget %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="text-center">
|
|
<a id="login" class="btn btn-lg btn-primary" href="{{login_url}}">Log in</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|