datatracker/ietf/templates/401.html
Lars Eggert 337d2ad387
feat: Switch to SVG logo; use it (and new bitmaps) in more places (#4035)
* feat: Switch to SVG logo; use it (and new bitmaps) in more places

* Run images through image_optim

* Copy icons from base template

* Tint icons red when in dev mode
2022-05-31 17:03:43 -05:00

29 lines
985 B
HTML

{# Copyright The IETF Trust 2012, All Rights Reserved #}
{% extends "base.html" %}
{% load static %}
{% block title %}401 Unauthorized{% endblock %}
{% block content %}
<img class="col-2 mb-5"
src="{% static 'ietf/images/ietf-logo.svg' %}"
alt="IETF">
<div class="alert alert-warning my-3">
<h1>Authentication Required</h1>
<hr>
<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 class="mb-0">
If you think this is a server error, please contact
<a href="mailto:webtools@ietf.org">webtools@ietf.org</a>.
</p>
</div>
{% endblock %}