This file is indexed.

/usr/share/pyshared/IPython/frontend/html/notebook/templates/login.html is in ipython-notebook 0.12.1+dfsg-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
{% extends layout.html %}

{% block content_panel %}

    {% if login_available %}

    <form action="/login?next={{url_escape(next)}}" method="post">
        Password: <input type="password" name="password" id="focus">
        <input type="submit" value="Sign in" id="signin">
    </form>

    {% end %}

{% end %}

{% block login_widget %}
{% end %}

{% block script %}
<script type="text/javascript">
  $(document).ready(function() {
    IPython.login_widget = new IPython.LoginWidget('span#login_widget');
    $('#focus').focus();
  });
</script>
{% end %}