<?php
/**
* ConfigureNewUserReceiptPage.class.php
*
* This file contains the definition for the ConfigureNewUserPage class
*
* @package Pages
* @author John Diamond <hide@address.com>
* @copyright John Diamond <hide@address.com>
* @license http://www.opensource.org/licenses/gpl-license.php GNU Public License
*/
// Include the parent class
require_once BASE_PATH . "solidworks/Page.class.php";
// Include UserDBO
require_once BASE_PATH . "DBO/UserDBO.class.php";
/**
* ConfigureNewUserReceiptPage
*
* Display a receipt for the new user
*/
class ConfigureNewUserReceiptPage extends Page
{
}
?>