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.

006.php 948B

123456789101112131415161718192021222324252627282930313233
  1. <?PHP
  2. define('SUPPORT_TITLE', 'Can I give other users access to the control panel?');
  3. define('SUPPORT_BTITLE', 'Giving other users access to the control panel');
  4. if (!defined('LIB_ACCOUNT')) { require('lib/account.php'); }
  5. addDashboardItem('Useful links', 'Terms &amp; Conditions', 'http://www.utd-hosting.com/terms');
  6. if (!defined('UID')) {
  7. addDashboardItem('Useful links', 'Login', 'login');
  8. }
  9. $sbody = <<<SUPPORT
  10. <p>
  11. We currently have no plans to allow multiple users to manage a single site.
  12. You may give another person your login details so that they can manage your
  13. account, but this is strongly discouraged. UTD-Hosting cannot be held
  14. responsible for any action taken by any person to whom you gave your account
  15. details.
  16. </p>
  17. <p>
  18. Please also note that section 1.4 (Account ownership) of the Terms and
  19. Conditions forbits the resale of any UTD-Hosting service.
  20. </p>
  21. SUPPORT;
  22. define('SUPPORT_BODY', $sbody);
  23. ?>