mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 20:00:26 +08:00
35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
{$layout}
|
|
{$template "/clusters/cluster/node/node_menu"}
|
|
{$template "/left_menu_with_menu"}
|
|
|
|
<div class="right-box with-menu">
|
|
<form class="ui form" data-tea-action="$" data-tea-success="success">
|
|
<csrf-token></csrf-token>
|
|
<input type="hidden" name="nodeId" :value="node.id"/>
|
|
<input type="hidden" name="loginId" :value="loginId"/>
|
|
|
|
<table class="ui table definition selectable">
|
|
<tr>
|
|
<td class="title">SSH主机地址</td>
|
|
<td>
|
|
<input type="text" name="sshHost" maxlength="64" v-model="sshHost"/>
|
|
<p class="comment">比如192.168.1.100</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>SSH主机端口</td>
|
|
<td>
|
|
<input type="text" name="sshPort" maxlength="5" v-model="sshPort"/>
|
|
<p class="comment">比如22。</p>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>SSH登录认证</td>
|
|
<td>
|
|
<grant-selector :v-grant="grant" :v-node-cluster-id="clusterId"></grant-selector>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<submit-btn></submit-btn>
|
|
</form>
|
|
</div> |