jsonpool
Version:
A json database for devs
47 lines (44 loc) • 1.73 kB
HTML
<html lang="en">
<head>
<!-- Metatags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Secure json storage">
<meta name="author" content="Javad Shafique">
<meta name="keywords" content="json, storage, jsonpool, json pool, json-pool, JSONPOOL, JSON POOL, JSON-POOL, secure storage, aes, aes encryption">
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="/css/style.min.css">
<!--- use jquery for javascript and the jsoneditor plugin for the editor -->
<script src="/js/jquery.min.js"></script>
<script defer src="/js/pools.min.js"></script>
<!-- Use ace as the editor -->
<script src="/ace/ace.js"></script>
<title>JsonPool</title>
<!-- controller -->
<script async src="/js/index.min.js"></script>
</head>
<body>
<h1>JsonPool: Secure json storage</h1>
<br>
<input class="input" id="input1" placeholder="id">
<input class="input" id="input2" placeholder="auth">
<button class="ok-btn" id="reload">load</button>
<br>
<br>
<div class="box">
<!-- <textarea onchange="load();" placeholder="{}" id="text-editor"></textarea> -->
<div id="editor">{}</div>
</div>
<br>
<button class="ok-btn" id="push">create</button>
<button class="rm-btn" id="del">delete</button>
<input type="checkbox" id="private" alt="Encrypt json with auth key">
Private
<pre><code id="response"></code></pre>
<br>
<a class="link" id="genlink">View raw</a>
<a> </a>
<a class="link" id="more">Read More</a>
</body>
</html>