Files
EdgeAdmin/web/views/@default/nodes/ipAddresses/createPopup.html
2020-11-10 12:47:24 +08:00

31 lines
725 B
HTML

{$layout "layout_popup"}
<h3>添加IP地址</h3>
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
<table class="ui table definition selectable">
<tr>
<td>IP地址 *</td>
<td>
<input type="text" name="ip" maxlength="128" ref="focus"/>
</td>
</tr>
<tr>
<td>是否可以访问</td>
<td>
<div class="ui checkbox">
<input type="checkbox" name="canAccess" value="1" checked="checked"/>
<label></label>
</div>
<p class="comment">是否为可以公开访问的IP。</p>
</td>
</tr>
<tr>
<td class="title">备注</td>
<td>
<input type="text" name="name" maxlength="50"/>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>