X-Git-Url: https://git.exim.org/buildfarm-server.git/blobdiff_plain/6c62797fe23926f40899bfec10424d277705e62a..a59c49981887fdcc58a1c3b00ebfb1e9f80b9699:/trunk/cgi-bin/register-form.pl diff --git a/trunk/cgi-bin/register-form.pl b/trunk/cgi-bin/register-form.pl deleted file mode 100755 index cf4621a..0000000 --- a/trunk/cgi-bin/register-form.pl +++ /dev/null @@ -1,26 +0,0 @@ -#!/usr/bin/perl - -use strict; -use Template; -use Captcha::reCAPTCHA; - -use vars qw( $template_dir $captcha_pubkey ); -require "$ENV{BFConfDir}/BuildFarmWeb.pl"; - - -my $c = Captcha::reCAPTCHA->new; - -my $captcha = $c->get_html($captcha_pubkey); - -my $template_opts = { INCLUDE_PATH => $template_dir }; -my $template = new Template($template_opts); - -print "Content-Type: text/html\n\n"; - - -$template->process('register-form.tt',{captcha => $captcha}); - - - - -