diff --git a/django/contrib/admin/templates/registration/password_reset_confirm.html b/django/contrib/admin/templates/registration/password_reset_confirm.html
index a1e0150a5d..1a24527c1d 100644
--- a/django/contrib/admin/templates/registration/password_reset_confirm.html
+++ b/django/contrib/admin/templates/registration/password_reset_confirm.html
@@ -1,6 +1,7 @@
{% extends "admin/base_site.html" %}
-{% load i18n %}
+{% load i18n static %}
+{% block extrastyle %}{{ block.super }}{% endblock %}
{% block breadcrumbs %}
{% trans 'Home' %}
@@ -17,11 +18,19 @@
{% trans "Please enter your new password twice so we can verify you typed it in correctly." %}
{% else %}
diff --git a/django/contrib/admin/templates/registration/password_reset_form.html b/django/contrib/admin/templates/registration/password_reset_form.html
index 23b68a3582..5110d1a995 100644
--- a/django/contrib/admin/templates/registration/password_reset_form.html
+++ b/django/contrib/admin/templates/registration/password_reset_form.html
@@ -1,6 +1,7 @@
{% extends "admin/base_site.html" %}
-{% load i18n %}
+{% load i18n static %}
+{% block extrastyle %}{{ block.super }}
{% endblock %}
{% block breadcrumbs %}
{% trans 'Home' %}
@@ -15,8 +16,14 @@
{% trans "Forgotten your password? Enter your email address below, and we'll email instructions for setting a new one." %}
{% endblock %}