summaryrefslogtreecommitdiff
path: root/templates/inventory/reset/password_reset_confirm.html
blob: 84d1c687ee752f24d6a1f198cbb02f9bdb8ca569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
  <title></title>
</head>
<body>
  {% if validlink %}
    <h3>Change password</h3>
    <form method="post">
      {% csrf_token %}
      {{ form.as_p }}
      <button type="submit">Change password</button>
    </form>
  {% else %}
    <p>
      The password reset link was invalid, possibly because it has already been used.
      Please request a new password reset.
    </p>
  {% endif %}
</body>
</html>