mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00
19 lines
595 B
HTML
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>
|