<?
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# DataDivisions, Build 1.0, 12/11/2003 #
# FileName: funcRegisterConfirm.php #
# File Description: #
# Provides functions required to display confirmation page after user has #
# registered and set up login credentials #
# #
# +-----------------------------------------------------------------------+ #
# | DataDivisions - Website Statistic Visualization Software | #
# | Copyright (c) 2003, Brian Willison | #
# +-----------------------------------------------------------------------+ #
# | The contents of this file are subject to the GNU General Public | #
# | License version 2 (June 1991). This file and all its contents (incl. | #
# | functions, methods, etc.) are free for general use within any | #
# | community. This software is distributed with the intent to allow | #
# | developers the opportunity to copy, manipulate and revamp this | #
# | application in part or whole for best use cases. | #
# | | #
# | This software is distributed "AS-IS" with no warranties of any kind | #
# | either expressed or implied. | #
# | | #
# | Please refer to the GPL license document for more information: | #
# | (_docs/gplLicense.pdf) | #
# +-----------------------------------------------------------------------+ #
# | Developer, Designer, Initial Creator: | #
# | Brian Willison (hide@address.com) | #
# +-----------------------------------------------------------------------+ #
# | Initial Download Reference: | #
# | http://datadivisions.sourceforge.net | #
# +-----------------------------------------------------------------------+ #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
// Function: Generate Register Confirmation Page
function genRegisterConfirmPage() {
genAppSmHeader(pageName); // generate application header
?>
<tr>
<td></td>
<td valign="top" colspan="3"><p class="header">Your account has been successfully created.
<p class="header">Please click <a href="<?=displayPage?>">here</a> to return to the login page.
</td>
<td></td>
</tr>
<tr>
<td valign="top" colspan="5"><?writeSpacer(1,10);?><input type="text" style="width:0px;height0px;border:0px;"></td>
</tr>
<?
genAppSmFooter(pageName); // generate application header
}
?>