skycaiji/SkycaijiApp/admin/view/proxy/add.html

37 lines
1.2 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<form id="win_form_proxy_add" method="post" action="{:url('Admin/Proxy/add')}">
&nbsp;<a href="javascript:;" class="glyphicon glyphicon-plus add-proxy-ip">添加一行</a>
<div class="table-responsive">
<table class="table table-hover datatable proxy-ip-list">
<thead>
<tr>
<th>IP带端口</th>
<th>用户名(选填)</th>
<th>密码(选填)</th>
<th>类型</th>
<th>{$Think.lang.op}</th>
</tr>
</thead>
<tbody>
<tr class="tpl-proxy-ip">
<td class="p-ip"><input type="text" name="ip_list[]" class="form-control" /></td>
<td><input type="text" name="user_list[]" class="form-control" /></td>
<td><input type="text" name="pwd_list[]" class="form-control" /></td>
<td>
<select name="type_list[]" class="form-control" style="width:95px;">
{foreach $proxyTypes as $k=>$v}
<option value="{$v}">{$k}</option>
{/foreach}
</select>
</td>
<td class="p-top1"><a href="javascript:;" class="glyphicon glyphicon-remove op-delete"></a></td>
</tr>
</tbody>
</table>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary btn-block">提交</button>
</div>
</form>
<script type="text/javascript">
window.proxyClass.init_add();
</script>