2020-10-24 06:38:10 -06:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" dir="ltr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>doip.js browser demo</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2020-10-24 17:55:40 -06:00
|
|
|
<h1>doip.js browser demo</h1>
|
2020-10-26 05:24:30 -06:00
|
|
|
|
2020-10-24 17:55:40 -06:00
|
|
|
<div id="claims">
|
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">dns:domain.org</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">xmpp:alice@domain.org</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">https://twitter.com/alice/status/1234567890123456789</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
|
|
|
</div>
|
2020-10-26 05:24:30 -06:00
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">https://www.reddit.com/user/Alice/comments/123456/post</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
|
|
|
</div>
|
2020-10-24 17:55:40 -06:00
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">https://news.ycombinator.com/user?id=Alice</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">https://lobste.rs/u/Alice</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
|
|
|
</div>
|
2020-10-26 05:24:30 -06:00
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">https://dev.to/alice/post</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">https://domain.org/alice/gitea_proof</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
2020-10-26 16:02:22 -06:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">https://domain.org/alice/gitlab_proof</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
2020-10-26 05:24:30 -06:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<h2 class="claim_input">https://gist.github.com/Alice/123456789</h2>
|
|
|
|
<pre class="claim_output"></pre>
|
|
|
|
</div>
|
2020-10-24 17:55:40 -06:00
|
|
|
</div>
|
|
|
|
|
2020-10-24 06:38:10 -06:00
|
|
|
</body>
|
2020-10-24 17:55:40 -06:00
|
|
|
|
2020-11-05 04:14:26 -07:00
|
|
|
<script src="../dist/doip.min.js" charset="utf-8"></script>
|
2020-10-24 17:55:40 -06:00
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
window.addEventListener('load', async () => {
|
|
|
|
const claims = document.querySelectorAll('#claims > div')
|
|
|
|
claims.forEach(async (item, i) => {
|
|
|
|
claimInput = item.querySelector('.claim_input').textContent
|
|
|
|
item.querySelector('.claim_output').textContent = JSON.stringify(await doip.verify(claimInput, null, { 'returnMatchesOnly': true, 'xmppVcardServerDomain': 'vcard.server.org' }), null, 2)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
h1, h2 {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#claims > div {
|
|
|
|
padding: 1em 2em;
|
|
|
|
}
|
|
|
|
#claims > div:nth-child(2n-1) {
|
|
|
|
background-color: #ddd;
|
|
|
|
}
|
|
|
|
pre {
|
|
|
|
padding: 1em;
|
|
|
|
border: 1px solid #bbb;
|
|
|
|
}
|
|
|
|
</style>
|
2020-10-24 06:38:10 -06:00
|
|
|
</html>
|