forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path401.html
More file actions
20 lines (15 loc) · 738 Bytes
/
401.html
File metadata and controls
20 lines (15 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{# Copyright The IETF Trust 2012, All Rights Reserved #}
{% extends "base.html" %}
{% load static %}
{% block title %}401 Unauthorized{% endblock %}
{% block content %}
<img class="ietflogo" src="{% static 'ietf/images/ietflogo.png' %}" alt="IETF" style="width: 10em">
<h2>Authentication Required</h2>
<p>The server could not verify that you are authorized to view this page using
the username and password you provided. You can now:</p>
<ul>
<li><a href="/accounts/login/">Attempt to login again</a></li>
<li><a href="/accounts/reset/">Request a password reset</a></li>
</ul>
<p>If you think this is a server error, please contact <a href="mailto:webtools@ietf.org">webtools@ietf.org</a>.</p>
{% endblock %}