nps/web/views/index/hedit.html

140 lines
7.4 KiB
Go
Raw Normal View History

2019-01-12 16:09:12 +00:00
<div class="row tile">
<div class="col-md-12 col-md-auto">
<div class="ibox float-e-margins">
<h3 class="ibox-title">add host</h3>
<div class="ibox-content">
<form class="form-horizontal">
2019-02-15 14:59:28 +00:00
<input type="hidden" name="id" value="{{.h.Id}}">
2019-01-12 16:09:12 +00:00
<div class="form-group">
2019-03-23 14:19:59 +00:00
<label class="col-sm-2 control-label" langtag="info-remark"></label>
<div class="col-sm-10">
2019-03-05 01:23:18 +00:00
<input value="{{.h.Remark}}" class="form-control" type="text" name="remark"
placeholder="remark">
</div>
2019-02-15 14:59:28 +00:00
</div>
<div class="form-group">
2019-03-23 14:19:59 +00:00
<label class="col-sm-2 control-label" langtag="info-host"></label>
<div class="col-sm-10">
2019-03-05 01:23:18 +00:00
<input value="{{.h.Host}}" class="form-control" type="text" name="host"
placeholder="such as a.proxy.com">
</div>
</div>
<div class="form-group" id="scheme">
2019-03-23 14:19:59 +00:00
<label class="control-label col-sm-2" langtag="info-scheme"></label>
2019-03-05 01:23:18 +00:00
<div class="col-sm-10">
2019-03-30 04:03:17 +00:00
<select id="scheme_select" class="form-control" name="scheme">
2019-03-05 01:23:18 +00:00
<option {{if eq "all" .h.Scheme}}selected{{end}} value="all">all</option>
<option {{if eq "http" .h.Scheme}}selected{{end}} value="http">http</option>
<option {{if eq "https" .h.Scheme}}selected{{end}} value="https">https</option>
</select>
</div>
2019-01-12 16:09:12 +00:00
</div>
2019-03-30 04:03:17 +00:00
{{if eq false .https_just_proxy}}
<div class="form-group" id="cert_file">
<label class="col-sm-2 control-label" langtag="info-https-cert">https cert file</label>
<div class="col-sm-10">
<input value="{{.h.CertFilePath}}" class="form-control" type="text" name="cert_file_path"
placeholder="empty means to be unrestricted">
</div>
</div>
<div class="form-group" id="key_file">
<label class="col-sm-2 control-label" langtag="info-https-key">https key file</label>
<div class="col-sm-10">
<input value="{{.h.KeyFilePath}}" class="form-control" type="text" name="key_file_path"
placeholder="empty means to be unrestricted">
</div>
</div>
{{end}}
<div class="form-group">
2019-03-23 14:19:59 +00:00
<label class="col-sm-2 control-label" langtag="info-url-router">url</label>
<div class="col-sm-10">
<input value="{{.h.Location}}" class="form-control" type="text" name="location"
placeholder="empty means to be unrestricted">
</div>
</div>
<div class="form-group">
2019-03-23 14:19:59 +00:00
<label class="col-sm-2 control-label" langtag="info-client-id">id</label>
<div class="col-sm-10">
<input value="{{.h.Client.Id}}" class="form-control" type="text" name="client_id"
placeholder="client id">
</div>
</div>
2019-04-08 09:01:08 +00:00
{{if eq true .allow_local_proxy}}
<div class="form-group" id="local_proxy">
<label class="control-label col-sm-2" langtag="info-local-proxy"></label>
<div class="col-sm-10">
<select class="form-control" name="local_proxy">
<option {{if eq false .h.Target.LocalProxy}}selected{{end}} value="0">no</option>
<option {{if eq true .h.Target.LocalProxy}}selected{{end}} value="1">yes</option>
</select>
</div>
</div>
{{end}}
2019-01-12 16:09:12 +00:00
<div class="form-group">
2019-03-23 14:19:59 +00:00
<label class="col-sm-2 control-label" langtag="info-target">(ip:)</label>
<div class="col-sm-10">
2019-02-02 16:54:43 +00:00
<textarea class="form-control" rows="4" type="text" name="target"
placeholder="such as
10.1.50.203:80
2019-03-29 02:41:57 +00:00
10.1.50.202:80">{{.h.Target.TargetStr}}</textarea>
<span class="help-block m-b-none">Line break if load balancing</span>
</div>
2019-01-12 16:09:12 +00:00
</div>
<div class="form-group" id="header">
2019-03-23 14:19:59 +00:00
<label class="col-sm-2 control-label" langtag="info-header-modify">request header</label>
<div class="col-sm-10">
2019-01-12 16:09:12 +00:00
<textarea class="form-control" rows="4" type="text" name="header"
placeholder="Cache-Control: no-cache">{{.h.HeaderChange}}</textarea>
<span class="help-block m-b-none"> Colon separated, multiple lines please fill in</span>
</div>
2019-01-12 16:09:12 +00:00
</div>
<div class="form-group" id="hostchange">
2019-03-23 14:19:59 +00:00
<label class="col-sm-2 control-label" langtag="info-host-change">request host</label>
<div class="col-sm-10">
<input value="{{.h.HostChange}}" class="form-control" value="" type="text" name="hostchange"
placeholder="host modify">
</div>
</div>
<div class="hr-line-dashed"></div>
<div class="form-group">
<div class="col-sm-4 col-sm-offset-2">
2019-12-21 07:35:55 +00:00
&nbsp;<button class="btn btn-success" type="button" id="add"><i
2019-03-29 02:41:57 +00:00
class="fa fa-fw fa-lg fa-eye"></i><span langtag="info-save"></span>
</button>
</div>
2019-01-12 16:09:12 +00:00
</div>
</form>
</div>
</div>
</div>
</div>
2019-01-12 16:09:12 +00:00
<script>
$(function () {
$("#add").on("click", function () {
$.ajax({
type: "POST",
url: "{{.web_base_url}}/index/edithost",
2019-01-12 16:09:12 +00:00
data: $("form").serializeArray(),
success: function (res) {
alert(res.msg)
if (res.status) {
history.back(-1)
}
}
})
})
2019-03-30 04:03:17 +00:00
$("#scheme_select").on("change", function () {
if ($("#scheme_select").val() == "all" || $("#scheme_select").val() == "https") {
$("#cert_file").css("display", "block")
$("#key_file").css("display", "block")
} else {
$("#cert_file").css("display", "none")
$("#key_file").css("display", "none")
}
})
2019-01-12 16:09:12 +00:00
})
2019-03-30 04:03:17 +00:00
2019-01-12 16:09:12 +00:00
</script>