-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathapp-src.html
More file actions
65 lines (59 loc) · 2.61 KB
/
Copy pathapp-src.html
File metadata and controls
65 lines (59 loc) · 2.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>OnlyAgent — Encrypt & sign in your browser using OnlyKey</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/ShareTechMono.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/onlyagent-theme.css" rel="stylesheet">
<link href="css/tokenizer.css" rel="stylesheet">
</head>
<body data-page="<%= htmlWebpackPlugin.options.page %>">
<header class="oa-nav"><div class="inner">
<a class="oa-brand" href="/"><img src="onlyagent-logo.svg" alt="OnlyAgent"></a>
<nav class="oa-navlinks">
<% if(htmlWebpackPlugin.options.app_pages)
for(var i in htmlWebpackPlugin.options.app_pages) {
var ap = htmlWebpackPlugin.options.app_pages[i];
if(ap.icon){ %>
<a href="./<%= ap.name %>"<% if(ap.name===htmlWebpackPlugin.options.page){ %> class="active"<% } %>><i class="fa <%= ap.icon %>" aria-hidden="true"></i><span><%= ap.name %></span></a>
<% }else if(ap.title){ %>
<a href="./<%= ap.name %>"<% if(ap.name===htmlWebpackPlugin.options.page){ %> class="active"<% } %>><span><%= ap.title %></span></a>
<% } } %>
<span class="sep"></span>
<a href="/"><i class="fa fa-home" aria-hidden="true"></i><span>Home</span></a>
<a href="https://docs.crp.to/webcrypt.html"><i class="fa fa-question" aria-hidden="true"></i><span>Help</span></a>
<a href="https://onlykey.io"><i class="fa fa-shopping-cart" aria-hidden="true"></i><span>Get OnlyKey</span></a>
</nav>
</div></header>
<main class="oa-main">
<div class="oa-page-head">
<h1 id="fancy-icons">
<i class="fi-a fa fa-paper-plane" aria-hidden="true"></i>
<i class="fi-b fa fa-long-arrow-right" aria-hidden="true"></i>
<i class="fi-c fa fa-lock" aria-hidden="true"></i>
</h1>
<div id="header_messages"></div>
</div>
<div id="container" class="oa-content">
<div class="text-center">
<h1>Loading...</h1>
<noscript>
<h2 class="text-danger">This App Requires JavaScript to work.</h2>
</noscript>
</div>
</div>
<div id="container">
<div id="terminal_messages"></div>
</div>
</main>
<footer class="oa-footer"><div class="inner">
<div><a href="https://crp.to/">CryptoTrust LLC</a> © 2026 · OnlyAgent</div>
<div style="display:flex;gap:20px;flex-wrap:wrap">
<a href="https://onlyagent.us">onlyagent.us</a>
<a href="https://docs.crp.to/webcrypt.html">Help</a>
</div>
</div></footer>
</body>
</html>