diff --git a/lms/static/images/bg-banner-account.png b/lms/static/images/bg-banner-account.png
new file mode 100644
index 0000000000..13aa7fd9a6
Binary files /dev/null and b/lms/static/images/bg-banner-account.png differ
diff --git a/lms/static/sass/base/_variables.scss b/lms/static/sass/base/_variables.scss
index 128c3f3850..9d8820e369 100644
--- a/lms/static/sass/base/_variables.scss
+++ b/lms/static/sass/base/_variables.scss
@@ -215,6 +215,10 @@ $action-secondary-active-focused-shadow: $m-pink-d2;
$action-secondary-disabled-bg: $m-gray-d3;
$action-secondary-disabled-fg: $white;
+// HEADER: graphic-based page titles
+$header-graphic-super-color: $m-blue-d1;
+$header-graphic-sub-color: $m-gray-d2;
+
// ====================
// MISC: visual horizontal rules
@@ -279,8 +283,8 @@ $footer_margin: ($baseline/4) 0 ($baseline*1.5) 0;
// IMAGES: backgrounds
$homepage-bg-image: '../images/homepage-bg.jpg';
-$login-banner-image: url(../images/bg-banner-login.png);
-$register-banner-image: url(../images/bg-banner-register.png);
+$login-banner-image: url(../images/bg-banner-account.png);
+$register-banner-image: url(../images/bg-banner-account.png);
$video-thumb-url: '../images/courses/video-thumb.jpg';
diff --git a/lms/static/sass/multicourse/_account.scss b/lms/static/sass/multicourse/_account.scss
index 53ab63a92a..f1cda25654 100644
--- a/lms/static/sass/multicourse/_account.scss
+++ b/lms/static/sass/multicourse/_account.scss
@@ -117,11 +117,43 @@
.introduction {
padding: ($baseline*2) $baseline 0 $baseline;
- header h1 {
- @extend %heading-2;
- margin-bottom: $baseline;
- padding-bottom: $baseline;
- text-align: left;
+ header {
+ position: relative;
+
+ // CASE: normal typographical headings
+ h1 {
+ @extend %heading-2;
+ margin-bottom: $baseline;
+ padding-bottom: $baseline;
+ text-align: left;
+ }
+
+ // CASE: marketing/imageery-based headings
+ .title {
+ position: absolute;
+ top: ($baseline*2.5);
+ left:($baseline*1.5);
+
+ .title-super, .title-sub {
+ @extend %t-weight1;
+ display: block;
+ letter-spacing: 0;
+ }
+
+ .title-super {
+ @include font-size(26);
+ @include line-height(18);
+ text-transform: uppercase;
+ color: $header-graphic-super-color;
+ }
+
+ .title-sub {
+ @include font-size(20);
+ margin-left: ($baseline*2);
+ text-transform: lowercase;
+ color: $header-graphic-sub-color;
+ }
+ }
}
}
}
diff --git a/lms/templates/login.html b/lms/templates/login.html
index f20ff1affe..938b1cc9c8 100644
--- a/lms/templates/login.html
+++ b/lms/templates/login.html
@@ -94,7 +94,10 @@
- ${_("Please log in to access your account and courses")}
+
+ ${_("Please log in")}
+ ${_("to access your account and courses")}
+
diff --git a/lms/templates/register.html b/lms/templates/register.html
index 834f99fbf0..3c14b72458 100644
--- a/lms/templates/register.html
+++ b/lms/templates/register.html
@@ -90,7 +90,10 @@
- ${_("Welcome! Register below to create your {platform_name} account").format(platform_name=settings.PLATFORM_NAME)}
+
+ ${_("Welcome!")}
+ ${_("Register below to create your {platform_name} account").format(platform_name=settings.PLATFORM_NAME)}
+