Unsupported scripts and control panel web app for a hosting company
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.

1.php 903B

1234567891011121314151617181920212223242526272829303132
  1. <?PHP
  2. if (isset($_POST['type']) && ($_POST['type'] == 'newuser' || $_POST['type'] == 'olduser')) {
  3. $_SESSION['stage'] = 2;
  4. $_SESSION['type'] = $_POST['type'];
  5. header('Location: /signup/2');
  6. exit;
  7. }
  8. ?>
  9. <p>
  10. Welcome to UTD-Hosting. Please select the type of package you wish to purchase.
  11. </p>
  12. <form action="/signup/1" method="post">
  13. <ul id="main">
  14. <li>
  15. <dl>
  16. <dt><input type="radio" name="type" value="newuser" checked="checked"> New user</dt>
  17. <dd>If you are new to UTD-Hosting, or wish to open an additional completely seperate account, select this option.</dd>
  18. </dl>
  19. </li>
  20. <li>
  21. <dl>
  22. <dt><input type="radio" name="type" value="olduser"> Existing user</dt>
  23. <dd>If you already have a UTD-Hosting account and wish to purchase
  24. additional bandwidth/hdd space, select this option.</dd>
  25. </dl>
  26. </li>
  27. </ul>
  28. <input type="submit" value="Next" style="float: right;">
  29. </form>