2019-01-14 06:14:02 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset='utf-8'>
|
|
|
|
<title>
|
|
|
|
Onionr
|
|
|
|
</title>
|
2019-06-18 03:36:19 +00:00
|
|
|
<link rel='shortcut icon' type='image/ico' href='/shared/images/favicon.ico'>
|
2019-01-14 06:14:02 +00:00
|
|
|
<link rel='stylesheet' href='/shared/main/style.css'>
|
2019-04-27 15:43:16 +00:00
|
|
|
<link rel='stylesheet' href='/private/main.css'>
|
2019-01-14 06:14:02 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2019-01-16 05:57:47 +00:00
|
|
|
<div id="shutdownNotice" class='overlay'>
|
|
|
|
<div>
|
|
|
|
<p>Your node will shutdown. Thank you for using Onionr.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-01-14 06:14:02 +00:00
|
|
|
<div class='content'>
|
2019-06-18 03:36:19 +00:00
|
|
|
<img class='logo' src='/shared/images/onionr-icon.png' alt='onionr logo'>
|
2019-06-16 20:56:22 +00:00
|
|
|
<span class='logoText'>Onionr</span>
|
2019-02-21 20:25:45 +00:00
|
|
|
<br><br>
|
2019-04-15 23:48:11 +00:00
|
|
|
<div>🕵️♂️ Current Used Identity: <input class='myPub' type='text' readonly></div>
|
|
|
|
<br>
|
2019-06-19 06:57:13 +00:00
|
|
|
<button id='shutdownNode' class='btn warnBtn'>Shutdown Node</button> <button id='refreshStats' class='btn primaryBtn'>Refresh Stats</button>
|
2019-03-11 05:10:37 +00:00
|
|
|
<br><br>
|
2019-06-20 07:59:32 +00:00
|
|
|
<label>Open Site: <input type='text' id='siteViewer' placeholder='Site Hash'> <button id='openSite' class='btn primaryBtn openSiteBtn'>Open Onionr Site</button></label>
|
2019-03-11 05:10:37 +00:00
|
|
|
<br>
|
2019-06-19 06:57:13 +00:00
|
|
|
<br><br><a class='idLink' href='/mail/'>Mail</a> - <a class='idLink' href='/friends/'>Friend Manager</a> - <a class='idLink' href='/board/'>Circle</a> -
|
2019-06-22 21:16:12 +00:00
|
|
|
<a class='idLink' href='/esoteric/'>Esoteric</a>
|
2019-04-15 23:48:11 +00:00
|
|
|
<br><br><hr>
|
2019-04-27 15:43:16 +00:00
|
|
|
<details class='configArea'>
|
2019-05-07 17:56:20 +00:00
|
|
|
<summary><b>Edit Configuration</b></summary>
|
|
|
|
<br>
|
2019-06-19 06:57:13 +00:00
|
|
|
<p><em>Warning: </em><b>Some values can be dangerous to change.<br><br>Configuration contains sensitive information.</b></p>
|
2019-05-07 17:56:20 +00:00
|
|
|
<br>
|
|
|
|
<textarea class='configEditor'></textarea>
|
|
|
|
<button class='saveConfig successBtn'>Save Config</button>
|
2019-04-27 15:43:16 +00:00
|
|
|
</details>
|
|
|
|
<hr>
|
2019-06-19 06:57:13 +00:00
|
|
|
<p>🔒 Security Level: <span id='securityLevel'></span></p>
|
2019-04-15 23:48:11 +00:00
|
|
|
<p>🕰️ Uptime: <span id='uptime'></span></p>
|
2019-06-16 22:34:43 +00:00
|
|
|
<h2>Connections</h2>
|
2019-06-19 06:57:13 +00:00
|
|
|
<p class='secRequestNotice hidden'>Note: on high security levels, you should have <em>no</em> received requests.</p>
|
2019-06-16 22:34:43 +00:00
|
|
|
<p>🖇️ Last Received Request: <span id='lastIncoming'>None since start</span></p>
|
|
|
|
<p>⬇️ Total Requests Received: <span id='totalRec'>None since start</span></p>
|
2019-04-15 23:48:11 +00:00
|
|
|
<p>🔗 Outgoing Connections:</p>
|
2019-01-14 06:14:02 +00:00
|
|
|
<pre id='connectedNodes'></pre>
|
2019-06-16 22:34:43 +00:00
|
|
|
<h2>Blocks</h2>
|
|
|
|
<p>💾 Stored Blocks: <span id='storedBlocks'></span></p>
|
|
|
|
<p>📨 Blocks in queue: <span id='blockQueue'></span></p>
|
2019-01-14 06:14:02 +00:00
|
|
|
</div>
|
2019-01-16 05:57:47 +00:00
|
|
|
<script src='/shared/misc.js'></script>
|
|
|
|
<script src='/shared/main/stats.js'></script>
|
|
|
|
<script src='/shared/panel.js'></script>
|
2019-06-18 03:36:19 +00:00
|
|
|
<script src='/shared/configeditor.js'></script>
|
|
|
|
<script src='/shared/sites.js'></script>
|
2019-01-14 06:14:02 +00:00
|
|
|
</body>
|
|
|
|
</html>
|