nezha/resource/template/component/server.html
Kris 0e9dfc0c7e modified: resource/l10n/zh-CN.toml
modified:   resource/template/common/menu.html
	modified:   resource/template/component/confirm.html
	modified:   resource/template/component/cron.html
	modified:   resource/template/component/monitor.html
	modified:   resource/template/component/notification.html
	modified:   resource/template/component/rule.html
	modified:   resource/template/component/server.html
	modified:   resource/template/dashboard/cron.html
	modified:   resource/template/dashboard/error.html
	modified:   resource/template/dashboard/login.html
	modified:   resource/template/dashboard/monitor.html
	modified:   resource/template/dashboard/notification.html
	modified:   resource/template/dashboard/server.html
	modified:   resource/template/dashboard/setting.html
	modified:   resource/template/dashboard/terminal.html
2022-04-29 04:52:26 +02:00

49 lines
2.2 KiB
HTML
Vendored

{{define "component/server"}}
<div class="ui tiny server modal transition hidden">
<div class="header">{{tr "AddServer"}}</div>
<div class="content">
<form id="serverForm" class="ui form">
<input type="hidden" name="id">
<div class="field">
<label>{{tr "Name"}}</label>
<input type="text" name="name" placeholder="{{tr "EinsteinLightspeed1"}}">
</div>
<div class="field">
<label>{{tr "Tag"}}</label>
<input type="text" name="Tag" placeholder="{{tr "ServerGroup"}}">
</div>
<div class="field">
<label>{{tr "DisplayIndex"}}</label>
<input type="number" name="DisplayIndex" placeholder="{{tr "TheLargerTheNumberTheHigherThePriority"}}">
</div>
<div class="secret field">
<label>{{tr "Secret"}}</label>
<input type="text" name="secret">
</div>
<div class="field">
<label>{{tr "Note"}}</label>
<textarea name="Note"></textarea>
</div>
<div class="command field">
<label>{{tr "LinuxOneKeyInstall"}}</label>
<div class="ui message">
{{if .Conf.GRPCHost}}
curl -L https://raw.githubusercontent.com/naiba/nezha/master/script/install.sh -o nezha.sh && chmod
+x nezha.sh && sudo ./nezha.sh install_agent <code class="command">{{.Conf.GRPCHost}}</code> <code
class="command">{{if .Conf.ProxyGRPCPort}}{{.Conf.ProxyGRPCPort}}{{else}}{{.Conf.GRPCPort}}{{end}}</code> <code
class="command hostSecret"></code> <code class="command">{{if .Conf.TLS}}--tls{{end}}</code>
{{else}}
{{tr "NoDomainAlert"}}
{{end}}
</div>
</div>
</form>
</div>
<div class=" actions">
<div class="ui negative button">{{tr "Cancel"}}</div>
<button class="ui positive nezha-primary-btn right labeled icon button">{{tr "Confirm"}}<i class="checkmark icon"></i>
</button>
</div>
</div>
{{end}}