diff --git a/module/VuFind/src/VuFind/View/Helper/Bootstrap3/Factory.php b/module/VuFind/src/VuFind/View/Helper/Bootstrap3/Factory.php
index d3e2f7824041f01e8f83d5575644affd3f410f84..563cb6baf69ce4da923de95dd7f29d9e459b4976 100644
--- a/module/VuFind/src/VuFind/View/Helper/Bootstrap3/Factory.php
+++ b/module/VuFind/src/VuFind/View/Helper/Bootstrap3/Factory.php
@@ -80,4 +80,19 @@ class Factory
         }
         return new LayoutClass($left, $offcanvas);
     }
+
+    /**
+     * Construct the Recaptcha helper.
+     *
+     * @param ServiceManager $sm Service manager.
+     *
+     * @return Recaptcha
+     */
+    public static function getRecaptcha(ServiceManager $sm)
+    {
+        return new Recaptcha(
+            $sm->getServiceLocator()->get('VuFind\Recaptcha'),
+            $sm->getServiceLocator()->get('VuFind\Config')->get('config')
+        );
+    }
 }
diff --git a/themes/bootstrap3/templates/Auth/Database/recovery.phtml b/themes/bootstrap3/templates/Auth/Database/recovery.phtml
index c164f06388392ad5d9614d1f565f25efed312d27..8d7ffb78fcf838c070ba226d1f02f5fdba190933 100644
--- a/themes/bootstrap3/templates/Auth/Database/recovery.phtml
+++ b/themes/bootstrap3/templates/Auth/Database/recovery.phtml
@@ -10,11 +10,7 @@
     <input type="email" name="email" class="form-control"/>
   </div>
 </div>
-<div class="form-group">
-  <div class="col-sm-9 col-sm-offset-3">
-    <?=$this->recaptcha()->html($this->useRecaptcha) ?>
-  </div>
-</div>
+<?=$this->recaptcha()->html($this->useRecaptcha) ?>
 <div class="form-group">
   <div class="col-sm-9 col-sm-offset-3">
   <input class="btn btn-default" name="submit" type="submit" value="<?=$this->transEsc('Recover Account') ?>"/>
diff --git a/themes/bootstrap3/templates/Helpers/email-form-fields.phtml b/themes/bootstrap3/templates/Helpers/email-form-fields.phtml
index 27e6c5bde2ee5a3cfa50818e2594af9098885b59..8a982c42399ca501f86ed50094a719ee977faebb 100644
--- a/themes/bootstrap3/templates/Helpers/email-form-fields.phtml
+++ b/themes/bootstrap3/templates/Helpers/email-form-fields.phtml
@@ -44,11 +44,7 @@
     </div>
   </div>
 <? endif ?>
-<div class="form-group">
-  <div class="col-sm-9 col-sm-offset-3">
-    <?=$this->recaptcha()->html($this->useRecaptcha) ?>
-  </div>
-</div>
+<?=$this->recaptcha()->html($this->useRecaptcha) ?>
 <div class="form-group">
   <div class="col-sm-9 col-sm-offset-3">
     <input type="submit" class="btn btn-primary" name="submit" value="<?=$this->transEsc('Send')?>"/>
diff --git a/themes/bootstrap3/templates/myresearch/account.phtml b/themes/bootstrap3/templates/myresearch/account.phtml
index dbd29f4ba831f87d4881cb4be485d79eaea5d45a..22e742f9f2dc645ac81aac466b1c94d11b019a2a 100644
--- a/themes/bootstrap3/templates/myresearch/account.phtml
+++ b/themes/bootstrap3/templates/myresearch/account.phtml
@@ -10,13 +10,7 @@
 
 <form method="post" name="accountForm" id="accountForm" class="form-horizontal" data-toggle="validator" role="form">
   <?=$this->auth()->getCreateFields()?>
-  <? if ($this->useRecaptcha): ?>
-    <div class="form-group">
-      <div class="col-sm-9 col-sm-offset-3">
-        <?=$this->recaptcha()->html($this->useRecaptcha) ?>
-      </div>
-    </div>
-  <? endif; ?>
+  <?=$this->recaptcha()->html($this->useRecaptcha) ?>
   <div class="form-group">
     <div class="col-sm-3">
       <a class="back-to-login btn btn-link" href="<?=$this->url('myresearch-userlogin') ?>"><i class="fa fa-chevron-left"></i> <?=$this->transEsc('Back')?></a>
diff --git a/themes/bootstrap3/templates/myresearch/newpassword.phtml b/themes/bootstrap3/templates/myresearch/newpassword.phtml
index 20a9e0f05e94503b5d07e2d5c7f7f160beb73e8c..d504382bf7dc7f9d575d1e693a0c65555a09642b 100644
--- a/themes/bootstrap3/templates/myresearch/newpassword.phtml
+++ b/themes/bootstrap3/templates/myresearch/newpassword.phtml
@@ -24,11 +24,7 @@
     <input type="hidden" value="<?=$this->escapeHtmlAttr($this->username) ?>" name="username"/>
     <input type="hidden" value="<?=$this->escapeHtmlAttr($this->auth_method) ?>" name="auth_method"/>
     <?=$this->auth()->getNewPasswordForm() ?>
-    <div class="form-group">
-      <div class="col-sm-9 col-sm-offset-3">
-        <?=$this->recaptcha()->html($this->useRecaptcha) ?>
-      </div>
-    </div>
+    <?=$this->recaptcha()->html($this->useRecaptcha) ?>
     <div class="form-group">
       <div class="col-sm-9 col-sm-offset-3">
         <input class="btn btn-primary" name="submit" type="submit" value="<?=$this->transEsc('Submit')?>" />
diff --git a/themes/bootstrap3/templates/record/sms.phtml b/themes/bootstrap3/templates/record/sms.phtml
index dc3685c7ed0ce093895395ec7977a865b240db54..bada672d77e466031a470868d5def4df3a771e8f 100644
--- a/themes/bootstrap3/templates/record/sms.phtml
+++ b/themes/bootstrap3/templates/record/sms.phtml
@@ -36,11 +36,7 @@
     <? $keys = is_array($this->carriers) ? array_keys($this->carriers) : array(); ?>
     <input type="hidden" name="provider" value="<?=isset($keys[0]) ? $keys[0] : ''?>" />
   <? endif; ?>
-  <div class="form-group">
-    <div class="col-sm-9 col-sm-offset-3">
-      <?=$this->recaptcha()->html($this->useRecaptcha) ?>
-    </div>
-  </div>
+  <?=$this->recaptcha()->html($this->useRecaptcha) ?>
   <div class="form-group">
     <div class="col-sm-9 col-sm-offset-3">
       <input class="btn btn-primary" type="submit" name="submit" value="<?=$this->transEsc('Send Text')?>"/>
diff --git a/themes/bootstrap3/theme.config.php b/themes/bootstrap3/theme.config.php
index a8734d238915886123889915d39094df2887ce87..b22ce20bee082375714d5d16157b42b179d537b6 100644
--- a/themes/bootstrap3/theme.config.php
+++ b/themes/bootstrap3/theme.config.php
@@ -31,6 +31,7 @@ return array(
         'factories' => array(
             'flashmessages' => 'VuFind\View\Helper\Bootstrap3\Factory::getFlashmessages',
             'layoutclass' => 'VuFind\View\Helper\Bootstrap3\Factory::getLayoutClass',
+            'recaptcha' => 'VuFind\View\Helper\Bootstrap3\Factory::getRecaptcha',
         ),
         'invokables' => array(
             'highlight' => 'VuFind\View\Helper\Bootstrap3\Highlight',