This file is indexed.

/usr/lib/python2.7/dist-packages/sagenb/data/sage/html/accounts/account_recovery.html is in python-sagenb 1.0.1+ds1-2.

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
{% extends "html/accounts/base.html" %}

{% block title %}{{ gettext('Account Recovery') }}{% endblock %}
{% block page_id %}account-recovery-page{% endblock %}

{% block body %}
<div id="wrapper">
    <h1>{{ gettext('Account Recovery') }}</h1>
    <p>{{ gettext("A new password will be emailed to the email address connected to your account. However if you didn't confirm your email address you will be unable to recover your account.") }}</p>

    <form method="GET" action="/forgotpass" style="display: inline;">
        <div>
            <label for="username">{{ gettext('Username') }}</label>
            <input type="text" name="username" size="15" />
        </div>
            <button type="submit">{{ gettext('Submit') }}</button>
    </form>
    <form method="GET" action="/" style="display: inline;">
            <button >{{ gettext('Cancel') }}</button>
    </form>
</div>
{% endblock %}