diff --git a/lms/templates/registration/password_reset_complete.html b/lms/templates/registration/password_reset_complete.html
index ae6d6a9ae7..908f2d610f 100644
--- a/lms/templates/registration/password_reset_complete.html
+++ b/lms/templates/registration/password_reset_complete.html
@@ -1,25 +1,11 @@
+{% extends "main_django.html" %}
{% load i18n %}
-{% load compressed %}
-{% load staticfiles %}
-
-
-
- {% trans "Your Password Reset is Complete" %}
-
- {% compressed_css 'style-vendor' %}
- {% compressed_css 'style-app' %}
- {% compressed_css 'style-app-extend1' %}
- {% compressed_css 'style-app-extend2' %}
-
- {% block main_vendor_js %}
- {% compressed_js 'main_vendor' %}
- {% endblock %}
-
-
+{% block title %}
+{% trans "Your Password Reset is Complete" %}
+{% endblock %}
+{% block bodyextra %}
+{% endblock %}
-
+{% block bodyclass %}view-passwordreset{% endblock %}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {% trans "Your Password Reset is Complete" %}
-
-
+{% block body %}
+
+
+
+
+ {% trans "Your Password Reset is Complete" %}
+
+
+
+
+
{% block content %}
-
+
{% blocktrans with link_start='' link_end=' ' %}
Your password has been set. You may go ahead and {{ link_start }}log in{{ link_end }} now.
{% endblocktrans %}
-
+
{% endblock %}
-
-
+
+{% endblock %}
diff --git a/lms/templates/registration/password_reset_confirm.html b/lms/templates/registration/password_reset_confirm.html
index ad048d458a..6bf9f3e194 100644
--- a/lms/templates/registration/password_reset_confirm.html
+++ b/lms/templates/registration/password_reset_confirm.html
@@ -1,29 +1,15 @@
+{% extends "main_django.html" %}
{% load i18n %}
-{% load compressed %}
-{% load staticfiles %}
-
-
-
+{% block title %}
{% blocktrans with platform_name=platform_name %}
Reset Your {{ platform_name }} Password
{% endblocktrans %}
+{% endblock %}
- {% compressed_css 'style-vendor' %}
- {% compressed_css 'style-app' %}
- {% compressed_css 'style-app-extend1' %}
- {% compressed_css 'style-app-extend2' %}
-
- {% block main_vendor_js %}
- {% compressed_js 'main_vendor' %}
- {% endblock %}
-
-
-
+{% block bodyextra %}
+{% endblock %}
-
+{% block bodyclass %}view-passwordreset{% endblock %}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+{% block body %}
+
+
+
+
{% blocktrans with platform_name=platform_name %}
Reset Your {{ platform_name }} Password
{% endblocktrans %}
-
-
-
+
+
+
+
+
{% if validlink %}
{% trans "Password Reset Form" %}
-
-
+{% endblock %}