X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=metaform%2Ftemplate.php;h=5aa4395f56afec99d7decd93669d0ce028d62181;hb=9140853cc645c28f6cdd6c3a4565d6e600bd7ca3;hp=84755d4a37477ed35e775fb21225d42fdf38a91a;hpb=030f09ab36a49e16a65163e8a537a7ccdb3061e4;p=wfpl.git diff --git a/metaform/template.php b/metaform/template.php index 84755d4..5aa4395 100644 --- a/metaform/template.php +++ b/metaform/template.php @@ -8,6 +8,7 @@ # # ~metaform_url~ + # SETUP # To send results by e-mail, all you have to do is set your e-mail address here: @@ -21,6 +22,11 @@ $GLOBALS['~form_name~_form_recipient'] = "fixme@example.com"; # Set this to the path to your uploads directory. It can be relative to the # location of this script. IT MUST END WITH A SLASH $GLOBALS['upload_directory'] = 'uploads/'; + +# Define the username and password required to view this form: +define('AUTH_REALM', '~form_name~ administration area'); +define('AUTH_USER', 'fixme'); +define('AUTH_PASS', 'fixme'); if(!file_exists('code/wfpl/template.php')) { die('This form requires wfpl.'); } @@ -44,7 +50,15 @@ function ~form_name~_get_fields() { return array(~php_fields~); } -function ~form_name~() { +function ~form_name~() { + # To remove password protection, just delete this block: + if (!isset($_SERVER['PHP_AUTH_USER']) || $_SERVER['PHP_AUTH_USER'] != AUTH_USER || $_SERVER['PHP_AUTH_PW'] != AUTH_PASS) { + header('WWW-Authenticate: Basic realm="' . AUTH_REALM . '"'); + header('HTTP/1.0 401 Unauthorized'); + echo '401 Unauthorized'; + exit; + } + $edit_id = format_int($_REQUEST['~form_name~_edit_id']); unset($_REQUEST['~form_name~_edit_id']); if($edit_id) {