some module updates

This commit is contained in:
titver968
2025-02-14 11:49:17 +01:00
parent eed7ddeb92
commit a7005b230f
8 changed files with 2298 additions and 33 deletions

View File

@@ -17,18 +17,20 @@
$payload = await response.json();
};
</script>
<h1>Welcome to 3D-Belte</h1>
<p>Visit <a href="/about">about page</a> to read the documentation. First press send, than read.</p>
<div class="body">
<div class="form">
<span>JWT Token</span>
<textarea>{$token}</textarea>
<span>Payload</span>
<textarea>{JSON.stringify($payload)}</textarea>
<button onclick={onSendClick}>send</button>
<button onclick={onReadClick}>read</button>
</div>
<div class="form">
<span>JWT Token</span>
<textarea>{$token}</textarea>
<span>Payload</span>
<textarea>{JSON.stringify($payload)}</textarea>
<button onclick={onSendClick}>send</button>
<button onclick={onReadClick}>read</button>
</div>
</div>
<style>
.body {
margin: 0;
@@ -47,4 +49,3 @@
border: 1px solid gray;
}
</style>