Skip to content

Commit 7f286c1

Browse files
committed
Summary: Port 401/404/500 pages to bootstrap
- Legacy-Id: 8722
1 parent a3399b0 commit 7f286c1

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

ietf/templates/401.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{# Copyright The IETF Trust 2012, All Rights Reserved #}
2-
{% extends "base.html" %}
2+
{% extends "ietf.html" %}
33
{% block title %}401 Unauthorized{% endblock %}
44
{% block content %}
55

6-
<img src="/images/ietflogo2e.png" height="80" width="140"/>
6+
<img class="ietflogo" src="/images/ietflogo.png" alt="IETF" style="width: 10em">
77

88
<h2>Authentication Required</h2>
99

ietf/templates/404.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2-
{% extends "base.html" %}
2+
{% extends "ietf.html" %}
33
{% block title %}404 Not Found{% endblock %}
44
{% block content %}
55

6-
<img src="/images/ietflogo2e.png" height="80" width="140"/>
6+
<img class="ietflogo" src="/images/ietflogo.png" alt="IETF" style="width: 10em">
77

88
<h2>The page you were looking for couldn't be found.</h2>
99

ietf/templates/500.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{# Copyright The IETF Trust 2007, All Rights Reserved #}
2-
{% extends "base.html" %}
2+
{% extends "ietf.html" %}
33
{% block title %}500 Internal Server Error{% endblock %}
44
{% block content %}
55

6-
<img src="/images/ietflogo2e.png" height="80" width="140">
6+
<img class="ietflogo" src="/images/ietflogo.png" alt="IETF" style="width: 10em">
77

88
<h2>Internal Server Error.</h2>
99

0 commit comments

Comments
 (0)