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

Server started, but never became accessible: > Failed to reach your server. > Please try again later. > Contact admin if the issue persists. Server failed to start (errors in Spawner): > Failed to start your server. > Please contact admin.
24 lines
353 B
HTML
24 lines
353 B
HTML
{% extends "page.html" %}
|
|
|
|
{% block login_widget %}
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
<div class="error">
|
|
{% block h1_error %}
|
|
<h1>
|
|
{{status_code}} : {{status_message}}
|
|
</h1>
|
|
{% endblock h1_error %}
|
|
{% block error_detail %}
|
|
{% if message %}
|
|
<p>
|
|
{{message}}
|
|
</p>
|
|
{% endif %}
|
|
{% endblock error_detail %}
|
|
</div>
|
|
|
|
{% endblock %}
|