datatracker/ietf/templates/401.html
Ole Laursen a589115ff4 Summary: Reindent all HTML files to follow the previous convention (no
tabs) and kill the scripts block in favour of just using a js block with
a script tag (which is easier to understand for context-sensitive
modes such as web-mode in Emacs). Also fix a couple of details, e.g.
missing semicolons in JS snippets.
 - Legacy-Id: 9096
2015-02-17 18:01:04 +00:00

20 lines
701 B
HTML

{# Copyright The IETF Trust 2012, All Rights Reserved #}
{% extends "ietf.html" %}
{% block title %}401 Unauthorized{% endblock %}
{% block content %}
<img class="ietflogo" src="/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 %}