bind.html.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. /**
  3. * The view file of bug module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Chunsheng Wang <chunsheng@cnezsoft.com>
  8. * @package admin
  9. * @version $Id: view.html.php 2568 2012-02-09 06:56:35Z shiyangyangwork@yahoo.cn $
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include '../../common/view/header.html.php';?>
  14. <div id='mainContent' class='main-content'>
  15. <div class='center-block mw-500px'>
  16. <div class='main-header'>
  17. <h2>
  18. <span class='prefix'><?php echo html::icon('cloud');?></span>
  19. <?php echo $lang->admin->bind->caption;?>
  20. </h2>
  21. </div>
  22. <form class='mw-400px' method="post" target="hiddenwin">
  23. <table class='table table-form'>
  24. <tr>
  25. <th class='w-100px'><?php echo $lang->user->account;?></th>
  26. <?php
  27. $account = zget($config->global, 'community', '');
  28. if($account == 'na') $account = '';
  29. ?>
  30. <td><?php echo html::input('account', $account, "class='form-control'");?></td>
  31. </tr>
  32. <tr>
  33. <th><?php echo $lang->user->password;?></th>
  34. <td><?php echo html::password('password', '', "class='form-control'");?></td>
  35. </tr>
  36. <tr>
  37. <td colspan='2' class="text-center">
  38. <?php
  39. echo html::submitButton();
  40. echo html::hidden('sn', $sn) . html::hidden('site', common::getSysURL());
  41. ?>
  42. </td>
  43. </tr>
  44. </table>
  45. </form>
  46. </div>
  47. </div>
  48. <?php include '../../common/view/footer.html.php';?>