function it_returns_the_recaptcha_html(Config $config, Encrypter $encrypter)
 {
     $site_key = '1234567890';
     $config->getRecaptchaSiteKey()->willReturn($site_key);
     $html = (require __DIR__ . "/../../../src/Html/templates/recaptcha.php");
     $this->html()->shouldReturn($html);
 }