Newer
Older
<?php
/* Temporary Component to get the signup stuff working with new SUCS site */
ob_start();
include("../member/signup.php");
$output = ob_get_contents();
ob_end_clean();
$smarty->assign("title", "Sign Up");
$smarty->assign("body", $output);
?>