Automatically exported from code.google.com/p/planningalerts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
675 B

  1. <?php
  2. require_once ("config.php");
  3. require_once ("user.php");
  4. require_once ("stats.php");
  5. $checkmail_page = new checkmail_page;
  6. class checkmail_page {
  7. //Constructor
  8. function checkmail_page() {
  9. $this->bind();
  10. }
  11. //Bind
  12. function bind() {
  13. //page vars
  14. $form_action = $_SERVER['PHP_SELF'];
  15. //smarty
  16. $smarty = new Smarty;
  17. $smarty->force_compile = true;
  18. $smarty->compile_dir = SMARTY_COMPILE_DIRECTORY;
  19. $smarty->assign("stats", stats::get_stats());
  20. $smarty->assign("page_title","Now check your email");
  21. $smarty->assign("menu_item", "signup");
  22. //Render
  23. $smarty->display('checkmail.tpl');
  24. }
  25. }
  26. ?>