mirror of https://github.com/waku-org/waku-lab.git
207 lines
3.9 KiB
HTML
207 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
|
|
<title>RLN Credential management</title>
|
|
<link rel="apple-touch-icon" href="./favicon.png" />
|
|
<link rel="manifest" href="./manifest.json" />
|
|
<link rel="icon" href="./favicon.ico" />
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
word-wrap: break-word;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
}
|
|
|
|
html {
|
|
font-size: 16px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 10px;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
min-width: 300px;
|
|
max-width: 800px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-content: space-between;
|
|
}
|
|
|
|
h2 {
|
|
text-align: center;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
h3:last-of-type {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h2 span,
|
|
h3 span {
|
|
font-weight: normal;
|
|
}
|
|
|
|
.progress {
|
|
color: #9ea13b;
|
|
}
|
|
|
|
.success {
|
|
color: #3ba183;
|
|
}
|
|
|
|
.error {
|
|
color: #c84740;
|
|
}
|
|
|
|
input {
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
select {
|
|
padding: 0.5rem;
|
|
max-width: 150px;
|
|
}
|
|
|
|
button {
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
button.progress {
|
|
color: white;
|
|
background-color: #9ea13b;
|
|
}
|
|
|
|
button.success {
|
|
color: white;
|
|
background-color: #3ba183;
|
|
}
|
|
|
|
button.error {
|
|
color: white;
|
|
background-color: #c84740;
|
|
}
|
|
|
|
.mb-1 {
|
|
margin-bottom: 1rem;
|
|
}
|
|
.mb-2 {
|
|
margin-bottom: 2rem;
|
|
}
|
|
.mb-3 {
|
|
margin-bottom: 3rem;
|
|
}
|
|
.mt-1 {
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.block {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="status">
|
|
<h3>
|
|
<b>Status:</b>
|
|
<span id="status" class="progress">Starting...</span>
|
|
</h3>
|
|
</div>
|
|
|
|
<div class="block mb-1">
|
|
<h2>Wallet</h2>
|
|
<button id="connect">Connect</button>
|
|
</div>
|
|
|
|
<div class="block mb-1">
|
|
<h2>Keystore</h2>
|
|
<div>
|
|
<button id="import">Import</button>
|
|
<input id="import-file" class="hidden" type="file" />
|
|
<button id="export">Export</button>
|
|
</div>
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<h3 class="mt-1">Existing credentials</h3>
|
|
|
|
<div class="block mb-2">
|
|
<select id="keystore"></select>
|
|
<div>
|
|
<input id="password" placeholder="password" />
|
|
<button id="read-credential">Read</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="block mb-3">
|
|
<h3>Create new (will use the password)</h3>
|
|
<button id="register-new">Register</button>
|
|
</div>
|
|
|
|
<div id="current-credentials">
|
|
<div class="block mb-1">
|
|
<p>Keystore hash</p>
|
|
<code>none</code>
|
|
</div>
|
|
|
|
<div class="block mb-1">
|
|
<p>Membership ID</p>
|
|
<code>none</code>
|
|
</div>
|
|
|
|
<div class="block mb-1">
|
|
<p>Secret Hash</p>
|
|
<code>none</code>
|
|
</div>
|
|
|
|
<div class="block mb-1">
|
|
<p>Commitment</p>
|
|
<code>none</code>
|
|
</div>
|
|
|
|
<div class="block mb-1">
|
|
<p>Nullifier</p>
|
|
<code>none</code>
|
|
</div>
|
|
|
|
<div class="block mb-1">
|
|
<p>Trapdoor</p>
|
|
<code>none</code>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="./index.js"></script>
|
|
</body>
|
|
</html>
|