Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hub.html « default « admin « wwwroot « hamcore « bin « src - github.com/SoftEtherVPN/SoftEtherVPN_Stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 91b4630748403b412916ea2ddf27b7250716f191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<!--#include file="include_head.html" -->
    <body>
<!--#include file="include_menu.html" -->
<div class="container theme-showcase" role="main">
        <H2><div id="HUB_NAME"></div></H2>

        <button class="btn btn-lg btn-danger" onclick="JS.DeleteVirtualHub(location.search);">Delete this Virtual Hub</button>

        <H3>List of Users</H3>
        <ul id="USERS_LIST"></ul>

        <H3>List of Active VPN Sessions</H3>
        <ul id="SESSIONS_LIST"></ul>
<!--#include file="include_footer.html" -->
</div>
    </body>
    <script>
        JS.HubAdminPage(location.search);
    </script>
</html>