lede/package/lean/luci-app-softethervpn/luasrc/view/softethervpn/index.htm
2019-10-25 07:49:47 -07:00

19 lines
595 B
HTML

<%#
Copyright (C) 2018-2019 Lienol
Licensed to the public under the Apache License 2.0.
-%>
<% include("cbi/map") %>
<script type="text/javascript">//<![CDATA[
XHR.poll(2, '<%=luci.dispatcher.build_url("admin", "vpn", "softethervpn", "status")%>', null,
function(x, result)
{
var status = document.getElementsByClassName('softethervpn_status')[0];
status.setAttribute("style","font-weight:bold;");
status.setAttribute("color",result.status ? "green":"red");
status.innerHTML = result.status?'<%=translate("RUNNING")%>':'<%=translate("NOT RUNNING")%>';
}
)
//]]>
</script>