-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patherror.html
124 lines (114 loc) · 2.98 KB
/
error.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{% extends "page.html" %}
{% block login_widget %}
{% endblock %}
{% block main %}
<div class="error">
{% block h1_error %}
<h1>
{{status_code}} : {{status_message}}
</h1>
{% if exception and exception.my_message %}
<h2>{{ exception.my_message }}</h2>
{% endif %}
{% endblock h1_error %}
{% block error_detail %}
{% if message %}
<p>
{{message}}
</p>
{% endif %}
{% if message_html %}
<p>
{{message_html | safe}}
</p>
{% endif %}
{% if extra_error_html %}
<p>
{{extra_error_html | safe}}
</p>
{% endif %}
{% endblock error_detail %}
<!--xxx-->
{% if exception.my_message == 'Login' %}
<p>If you enter the correct code in the form below, your
github username will be added to the list of allowed users.
If you enter the incorrect code, this page will reload.
</p>
<div id="login-main" class="container">
<form action="{{login_url}}?next=/BASE_URL/hub/home" method="post" role="form">
<div class="auth-form-header">
Sign in
</div>
<div class='auth-form-body'>
<p id='insecure-login-warning' class='hidden'>
Warning: JupyterHub seems to be served over an unsecured HTTP connection.
We strongly recommend enabling HTTPS for JupyterHub.
</p>
{% if login_error %}
<p class="login_error">
{{login_error}}
</p>
{% endif %}
<label for="username_input">Username:</label>
<input
id="username_input"
type="hidden"
autocapitalize="off"
autocorrect="off"
class="form-control"
name="username"
value="{{ exception.user }}"
val="{{ exception.user }}"
tabindex="1"
autofocus="autofocus"
/> {{exception.user}} <br />
<label for='password_input'>Code:</label>
<input
type="password"
class="form-control"
name="code"
id="code_input"
tabindex="2"
/>
<input
type="submit"
id="login_submit"
class='btn btn-jupyter'
value='Sign In'
tabindex="3"
/>
</div>
</form>
</div>
{% endif %}
<!--xxx-->
</div>
{% endblock %}
{% block script %}
{{super()}}
<script type="text/javascript">
function _remove_redirects_from_url() {
if (window.location.search.length <= 1) {
return;
}
var search_parameters = window.location.search.slice(1).split('&');
for (var i = 0; i < search_parameters.length; i++) {
if (search_parameters[i].split('=')[0] === 'redirects') {
// remote redirects from search parameters
search_parameters.splice(i, 1);
var new_search = '';
if (search_parameters.length) {
new_search = '?' + search_parameters.join('&');
}
var new_url = window.location.origin +
window.location.pathname +
new_search +
window.location.hash;
window.history.replaceState({}, "", new_url);
return;
}
}
}
_remove_redirects_from_url();
</script>
{% endblock %}