fix menu issues

This commit is contained in:
aaronchen2k
2020-01-23 17:16:00 +08:00
parent 96b6c17213
commit de8106ab82
9 changed files with 47 additions and 25 deletions
+13 -4
View File
@@ -30,10 +30,19 @@
<td class='required'><?php echo html::input('serviceUrl', $jenkins->serviceUrl, "class='form-control'"); ?></td>
<td></td>
</tr>
<tr id="credentials-field">
<th class='thWidth'><?php echo $lang->credentials->common; ?></th>
<td style="width:550px"><?php echo html::select('credentials', $credentialsList, $jenkins->credentials, "class='form-control'"); ?></td>
<td><?php echo $lang->jenkins->tips; ?></td>
<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->password;?></th>
<td>
<div class='input-group'>
<?php echo html::password('password', '', "class='form-control'");?>
<span class='input-group-addon fix-border fix-padding'></span>
<?php echo html::select('encrypt', $lang->jenkins->encryptList, 'base64', "class='form-control'");?>
</div>
</td>
</tr>
<tr>