diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-04-05 20:14:43 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-04-05 20:14:43 +0200 |
commit | b98bb29b5646a1bd1fa68baf39aa22ef20c90781 (patch) | |
tree | ba8dbd114b15513317374c276e77e0f4a9913bdd /index.cgi | |
parent | b951f1b2bb1f432cee8bc14956a175c8953999ec (diff) |
Use root page derived template (not contact page and not page directly), and thanks page thereof.
Diffstat (limited to 'index.cgi')
-rwxr-xr-x | index.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5,9 +5,9 @@ use CGI::FormBuilder; my $build_path = '../build'; # TODO: check if protocol-agnostic URL works -my $webroot = 'https://form.omni-presence.dk/contact/'; -my $req_path = $build_path . '/html/contact/index.html'; -my $ack_path = $build_path . '/html/contact/thanks/index.html'; +my $webroot = 'https://form.omni-presence.dk/'; +my $req_path = $build_path . '/html/index.tmpl'; +my $ack_path = $build_path . '/html/thanks/index.html'; my $webmaster = 'webmaster@omni-presence.dk'; my $frontdesk = 'info@omni-presence.dk'; |