Infra 2193 - Fix title for the thank you page

Signed-off-by: Eric Poirier <eric@eclipse.org>
diff --git a/assets/public/stylesheets/thankyou.min.css b/assets/public/stylesheets/thankyou.min.css
index 8309ef6..034838e 100644
--- a/assets/public/stylesheets/thankyou.min.css
+++ b/assets/public/stylesheets/thankyou.min.css
@@ -1 +1 @@
-#container-newsletter .thankyou{padding-bottom:20px}#container-newsletter .thankyou h1{color:#3f3b60;font-size:35px;padding-top:0;font-style:normal}#container-newsletter .thankyou h1 .thankyou-title{font-weight:bold}#container-newsletter .thankyou .direct-link .download-link-msg{padding-top:10px;color:#7c7a8f;font-size:15px}#container-newsletter .thankyou .direct-link .download-link-msg a{color:#3f3b60}#container-newsletter .newsletter{padding-bottom:2em;background-color:#f2f2f2}#container-newsletter .newsletter .triangle-newsletter{padding-top:3em;margin:auto;width:0;height:0;border-style:solid;border-width:40px 100px 0 100px;-moz-transform:scale(.9999);border-color:#fff transparent transparent transparent}#container-newsletter .newsletter .newsletter-box{padding-top:1.5em;padding-left:3em;padding-right:3em;color:#cbcbcb;background-color:#232325}#container-newsletter .newsletter .newsletter-box hr{border-top:1px solid #49494b}#container-newsletter .newsletter .newsletter-box #signup_1{font-size:2em}#container-newsletter .newsletter .newsletter-box #signup_2{font-size:1.5em}#container-newsletter .newsletter .newsletter-box #signup_2 .subscribe{color:#f2f2f2;font-weight:bold}#container-newsletter .newsletter .newsletter-box #signup_3 #mce-EMAIL{padding-left:.5em;color:#232325;height:3em}#container-newsletter .newsletter .newsletter-box #signup_3 #mc-embedded-subscribe{padding:.75em;padding-left:1.75em;padding-right:2em;margin:.75em;margin-right:1em;margin-bottom:1em}#container-newsletter .newsletter #newsletter-image{margin-left:2.5em}
\ No newline at end of file
+.container-thankyou .thankyou{padding-bottom:20px}.container-thankyou .thankyou .thankyou-title{color:#3f3b60;font-size:35px;padding-top:0;font-style:normal}.container-thankyou .thankyou .thankyou-title span{font-weight:bold}.container-thankyou .thankyou .direct-link .download-link-msg{padding-top:10px;color:#7c7a8f;font-size:15px}.container-thankyou .thankyou .direct-link .download-link-msg a{color:#3f3b60}.container-thankyou .newsletter{padding-bottom:2em;background-color:#f2f2f2}.container-thankyou .newsletter .triangle-newsletter{padding-top:3em;margin:auto;width:0;height:0;border-style:solid;border-width:40px 100px 0 100px;-moz-transform:scale(.9999);border-color:#fff transparent transparent transparent}.container-thankyou .newsletter .newsletter-box{padding-top:1.5em;padding-left:3em;padding-right:3em;color:#cbcbcb;background-color:#232325}.container-thankyou .newsletter .newsletter-box hr{border-top:1px solid #49494b}.container-thankyou .newsletter .newsletter-box #signup_1{font-size:2em}.container-thankyou .newsletter .newsletter-box #signup_2{font-size:1.5em}.container-thankyou .newsletter .newsletter-box #signup_2 .subscribe{color:#f2f2f2;font-weight:bold}.container-thankyou .newsletter .newsletter-box #signup_3 #mce-EMAIL{padding-left:.5em;color:#232325;height:3em}.container-thankyou .newsletter .newsletter-box #signup_3 #mc-embedded-subscribe{padding:.75em;padding-left:1.75em;padding-right:2em;margin:.75em;margin-right:1em;margin-bottom:1em}.container-thankyou .newsletter #newsletter-image{margin-left:2.5em}
\ No newline at end of file
diff --git a/content/en_thankyou.php b/content/en_thankyou.php
index 54ba00b..1820c33 100644
--- a/content/en_thankyou.php
+++ b/content/en_thankyou.php
@@ -56,6 +56,7 @@
     $variables = array();
     $variables['main_container_classes'] = 'container-full';
     $App->setThemeVariables($variables);
+    $App->AddExtraHtmlHeader('<link rel="stylesheet" href="/downloads/assets/public/stylesheets/thankyou.min.css"/>');
     include_once($_SERVER['DOCUMENT_ROOT'] . "/donate/content/en_index.php");
     break;
 
diff --git a/content/thankyou/newsletter.tpl.php b/content/thankyou/newsletter.tpl.php
index 31c8c68..d005583 100644
--- a/content/thankyou/newsletter.tpl.php
+++ b/content/thankyou/newsletter.tpl.php
@@ -17,10 +17,10 @@
     $Payment = new Paypal();
   }
 ?>
-<div id="container-newsletter">
+<div class="container-thankyou">
   <?php if (isset($title_1) && isset($title_2) && isset($download_link)):?>
     <div class="row thankyou text-center">
-      <h1><span class="thankyou-title"><?php print $title_1; ?></span> <?php print $title_2;?></h1>
+      <h1 class="thankyou-title"><span><?php print $title_1; ?></span> <?php print $title_2;?></h1>
       <span class="direct-link"><?php print $download_link; ?></span>
     </div>
   <?php endif;?>