Files
EdgeAdmin/web/views/@default/nodes/ipAddresses/createPopup.html

31 lines
796 B
HTML
Raw Normal View History

2020-08-21 21:09:42 +08:00
{$layout "layout_popup"}
<h3>添加IP地址</h3>
2020-11-10 12:47:24 +08:00
<form method="post" class="ui form" data-tea-action="$" data-tea-success="success">
2020-08-21 21:09:42 +08:00
<table class="ui table definition selectable">
<tr>
<td class="title">IP地址 *</td>
2020-08-21 21:09:42 +08:00
<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如果选中也会作为DNS解析记录的值使用。</p>
</td>
</tr>
2020-08-21 21:09:42 +08:00
<tr>
2020-09-06 16:19:34 +08:00
<td class="title">备注</td>
2020-08-21 21:09:42 +08:00
<td>
<input type="text" name="name" maxlength="50"/>
</td>
</tr>
</table>
<submit-btn></submit-btn>
</form>