* chore: Use URL resolver more * Use settings.IDTRACKER_BASE_URL * More fixes * Use URL resolver for things under /accounts * Use URL resolver for things under /stream * Use URL resolver for things under /iesg * Use URL resolver for things under /meeting * Fix bugs * Use URL resolver for things under /help * Use URL resolver for things under /ipr * More changes * Revert vnu.jar * Fix typos * Address review comments by @rjsparks Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
29 lines
1 KiB
HTML
29 lines
1 KiB
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="{% url 'ietf.ietfauth.views.login' %}">Attempt to login again</a>
|
|
</li>
|
|
<li>
|
|
<a href="{% url 'ietf.ietfauth.views.password_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 %} |