Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Rsync25 authored Jun 26, 2023
1 parent a20ae39 commit 949a0f9
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,22 @@ <h1>Coinjoin Demo</h1>
</div>

<div class="form-group">
<label for="address1">Address 1:</label>
<label for="PubKey">PubKey:</label>
<input type="text" id="pubkey" name="address1" placeholder="Enter PubKey(Nostr)>
</div>
<div class="form-group">
<label for="PubKey">PubKey:</label>
<input type="text" id="pubkey" name="address1" placeholder="Enter PubKey(Nostr)>
</div>
<div class="form-group">
<label for="address1">Alice:</label>
<input type="text" id="address1" name="address1" placeholder="Enter address">
</div>

<div class="form-group">
<label for="address2">Address 2:</label>
<label for="address2">Bob:</label>
<input type="text" id="address2" name="address2" placeholder="Enter address">
</div>

Expand All @@ -82,6 +92,9 @@ <h1>Coinjoin Demo</h1>
var amount2 = document.getElementById("amount2").value;
var address1 = document.getElementById("address1").value;
var address2 = document.getElementById("address2").value;
var pubkey = document.getElementById("PubKey").value
var pubkey = document.getElementById("PubKey").value


// Perform the Coinjoin logic here

Expand Down

0 comments on commit 949a0f9

Please sign in to comment.