This file is indexed.

/usr/share/pyshared/apache_openid/templates/login_page.html is in python-apache-openid 2.0.1-0ubuntu3.

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
27
28
29
30
31
32
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
          "http://www.w3.org/TR/html4/strict.dtd">
<html>
  <head>
    <title>%(title)s</title>
    <style type="text/css">
      div.error {
          background: #ffdddd;
          border: 1px solid red;
          padding: 0.5em;
      }
      div.message {
          background: #ffffdd;
          border: 1px solid yellow;
          padding: 0.5em;
      }
      form {
          margin-top: 1em;
      }
    </style>
  </head>
  <body onload="%(onload)s">
    <h1>%(title)s</h1>
    %(resource)s%(message)s
    <form method="post" action="%(action)s" name="oid_form">
      <div>
        %(form_input)s
        <input id="continue_btn" type="submit" value="Continue">
      </div>
    </form>
  </body>
</html>