20 lines
494 B
HTML
20 lines
494 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<div>
|
||
|
<form method="POST" action="/request/nostr">
|
||
|
<label>Username</label><br>
|
||
|
<input name="Name" type="text" value="" /><br>
|
||
|
<label>Key in npub format</label><br>
|
||
|
<input name="Key" type="text" value="" /><br>
|
||
|
<label>Relays as comma seperated list (optional)</label><br>
|
||
|
<input name="Relays" type="text" value="" /><br>
|
||
|
<input type="submit" value="submit" />
|
||
|
</form>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|