Example #1
0
            //
            // set up flot
            //
            $flot->_create_start_dirs();
            // add username/pass, store to datastore
            if ($flot->datastore->b_add_user($_POST["email"], sha1($_POST["password"]))) {
                // log the user in too, with the same email and password that was posted as part of their registration
                $flot->_handle_auth_attempt();
                # at a later date, add some starter items
                ## web page oncology
                ## a few pages
                ## a menu
                // generate all pages
                $flot->_render_all_pages();
                // delete this start.php page for security
                $flot->_delete_start_page();
                $fuFU->_delete_update_files();
                // redirect user to home page
                $flot->_page_change("/");
            } else {
                echo "error creating user.. :(";
            }
        }
    }
}
?>
<!DOCTYPE html>
<html>
	<head>
		<link rel="stylesheet" href="<?php 
echo S_BASE_EXTENSION;