-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
23 lines (23 loc) · 919 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>NENC - Nick's Experimental Nostr Client</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Nick's Experimental Nostr Client [ NENC ]</h1>
<script src="relay.js"></script>
<script src="index.js"></script>
<button id="auth" onclick="noseauth()">WHOAMI</button>
<input type="text" class="relay"> <button onclick="nosrecon()">Connect to relay</button> <button onclick="clear_log()">Clear Log</button> <br> <br>
<textarea>["REQ", "TEST", {"kinds": [0], "limit": 4}]</textarea>
<button onclick="rsend()">Send Payload</button>
<br>
<pre class="log">["REQ", "TEST", {"kinds": [0], "limit": 4}]
</pre>
<!--<script src="nostr.js"></script>-->
</body>
</html>