| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- /**
- * The create view file of jenkins module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Gang Liu <liugang@cnezsoft.com>
- * @package jenkins
- * @version $Id$
- * @link https://www.zentao.net
- */
- ?>
- <?php include '../../common/view/header.html.php'; ?>
- <div id='mainContent' class='main-row'>
- <div class='main-col main-content'>
- <div class='center-block'>
- <div class='main-header'>
- <h2><?php echo $lang->jenkins->lblCreate;?></h2>
- </div>
- <form id='jenkinsForm' method='post' class='form-ajax'>
- <table class='table table-form'>
- <tr>
- <th><?php echo $lang->jenkins->name; ?></th>
- <td class='required'><?php echo html::input('name', '', "class='form-control'"); ?></td>
- </tr>
- <tr>
- <th><?php echo $lang->jenkins->url; ?></th>
- <td class='required'><?php echo html::input('url', '', "class='form-control'"); ?></td>
- </tr>
- <tr>
- <th><?php echo $lang->jenkins->account;?></th>
- <td><?php echo html::input('account', '', "class='form-control'");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->jenkins->token;?></th>
- <td><?php echo html::input('token', '', "class='form-control' placeholder='{$lang->jenkins->tokenFirst}'");?></td>
- </tr>
- <tr>
- <th><?php echo $lang->jenkins->password;?></th>
- <td><?php echo html::password('password', '', "class='form-control' placeholder='{$lang->jenkins->tips}'");?></td>
- </tr>
- <tr>
- <td colspan='2' class='text-center form-actions'>
- <?php echo html::submitButton(); ?>
- <?php if(!isonlybody()) echo html::a(inlink('browse', ""), $lang->goback, '', 'class="btn btn-wide"');?>
- </td>
- </tr>
- </table>
- </form>
- </div>
- </div>
- </div>
- <?php include '../../common/view/footer.html.php'; ?>
|