<?
$MustLogin=1|2|4;
require_once("../../libs/header.php");
$smarty->assign("redirect", $_GET["folder"]);
$form=array(
"method"=>"POST",
"action"=>"",
"message"=>"",
"errorcount"=>0,
"fields"=>array(
"filename"=>array("type"=>"text",
"description"=>$lang['filename'],
"error"=>$lang['enter_filename']
),
"descript"=>array("type"=>"textarea",
"description"=>$lang['description'],
"error"=>$lang['enter_welcome'],
),
"confirm"=>array("type"=>"select",
"description"=>$lang['accept'],
"extra"=>array("Y"=>"Yes", "N"=>"No"),
"comment"=>"<font color=gray>".$lang['no_email_notification']."</font>"
)
),
"submit"=>$lang['go']
);
$userform=new UserForms($form["fields"]);
?>