2014-08-25 11:43:05 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2015-07-07 17:31:56 +08:00
|
|
|
<title>AnyProxy</title>
|
2015-07-12 21:19:49 +08:00
|
|
|
<meta charset="UTF-8" />
|
2014-08-27 17:42:42 +08:00
|
|
|
<link rel="stylesheet" href="/css/uikit.gradient.min.css" />
|
2014-08-28 09:52:31 +08:00
|
|
|
<link rel="stylesheet" href="/css/page.css" />
|
2015-07-07 17:31:56 +08:00
|
|
|
<link rel="stylesheet" type="text/css" href="/css/jstree_style/style.min.css">
|
|
|
|
|
2014-09-05 14:45:01 +08:00
|
|
|
<link rel="icon" type="image/png" href="/favico.png" />
|
2014-08-25 11:43:05 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="topHead">
|
2014-12-08 15:35:46 +08:00
|
|
|
<div class="logoWrapper">
|
2015-07-07 17:31:56 +08:00
|
|
|
<h1>AnyProxy</h1>
|
2015-05-19 21:19:43 +08:00
|
|
|
<div id="J_indicatorEl"></div>
|
2014-12-08 15:35:46 +08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="ctrlWrapper">
|
2015-07-01 23:18:35 +08:00
|
|
|
<a href="#"><span class="topBtn J_statusBtn"><i class="uk-icon-stop"></i>Stop</span></a>
|
|
|
|
<a href="#"><span class="topBtn J_statusBtn btn_disable"><i class="uk-icon-play"></i>Resume</span></a>
|
|
|
|
<a href="#"><span class="topBtn J_clearBtn"><i class="uk-icon-eraser"></i>Clear(Ctrl+X)</span></a>
|
|
|
|
|
2014-12-08 15:35:46 +08:00
|
|
|
<span class="sep">|</span>
|
2015-07-08 17:55:14 +08:00
|
|
|
<a href="/fetchCrtFile" target="_blank"><span class="topBtn"><i class="uk-icon-download"></i>Download rootCA.crt</span></a>
|
2015-07-01 23:18:35 +08:00
|
|
|
<a href="/qr_root" class="J_fetchRootQR" target="_blank"><span class="topBtn"><i class="uk-icon-qrcode"></i>QRCode of rootCA.crt</span></a>
|
2015-01-05 17:12:50 +08:00
|
|
|
|
2014-12-08 15:35:46 +08:00
|
|
|
<span class="sep">|</span>
|
2015-07-07 17:31:56 +08:00
|
|
|
<a href="https://github.com/alibaba/anyproxy" target="_blank"><span class="topBtn"><i class="uk-icon-github"></i>Github</span></a>
|
2014-12-08 15:35:46 +08:00
|
|
|
</div>
|
|
|
|
|
2015-07-08 17:55:14 +08:00
|
|
|
<div class="ctrlWrapper">
|
2015-08-07 14:27:57 +08:00
|
|
|
<span id="J_filterBtnContainer"></span>
|
|
|
|
<span id="J_filterContainer"></span>
|
|
|
|
<span class="sep">|</span>
|
2015-07-12 21:19:49 +08:00
|
|
|
|
|
|
|
{@if customMenu.length}
|
|
|
|
{@each customMenu as item}
|
|
|
|
<a href="#"><span class="topBtn J_customButton" iframeUrl="${item.url}"><i class="${item.icon}"></i>${item.name}</span></a>
|
|
|
|
{@/each}
|
|
|
|
<span class="sep">|</span>
|
|
|
|
{@/if}
|
|
|
|
|
2015-07-20 11:19:36 +08:00
|
|
|
<span title="${rule}"><i class="uk-icon-chain"></i>Rule : ${rule}</span>
|
2015-07-01 23:18:35 +08:00
|
|
|
</div>
|
|
|
|
|
2014-12-08 15:35:46 +08:00
|
|
|
<div style="clear:both"></div>
|
2014-08-25 11:43:05 +08:00
|
|
|
</div>
|
2014-08-27 17:42:42 +08:00
|
|
|
|
2015-05-03 21:24:20 +08:00
|
|
|
<div class="mainTableWrapper" id="J_content"></div>
|
2014-10-11 16:03:43 +08:00
|
|
|
|
2015-07-12 21:19:49 +08:00
|
|
|
<input type="hidden" id="socketPort" value="${wsPort}" />
|
|
|
|
<input type="hidden" id="baseUrl" value="${ipAddress}" />
|
2015-04-28 21:10:14 +08:00
|
|
|
|
2015-05-19 21:19:43 +08:00
|
|
|
<script src="./page.js"></script>
|
2014-08-25 11:43:05 +08:00
|
|
|
</body>
|
2015-05-19 21:19:43 +08:00
|
|
|
</html>
|