Skip to content

Commit

Permalink
index.html: better explain expected lnd settings
Browse files Browse the repository at this point in the history
  • Loading branch information
xanoni authored and fiatjaf committed Sep 6, 2021
1 parent 85c0a80 commit 5574a49
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,18 @@
</div>
<div v-if="kind == 'lnd'">
<div class="field">
<label for="host"> Host (IP or Domain + Port) </label>
<input class="input full-width" name="host" id="host" />
<label for="host"> LND REST Host (Protocol + IP/Domain + Port) </label>
<input
class="input full-width" name="host" id="host"
placeholder="https://foo.bar:8080"
/>
</div>
<div class="field">
<label for="key"> Invoice Macaroon </label>
<input class="input full-width" name="key" id="key" />
<label for="key"> Invoice Macaroon (base64 encoded) </label>
<input
class="input full-width" name="key" id="key"
placeholder="V2UgYWxsIGxvdmUgQGZpYXRqYWYhCg=="
/>
</div>
</div>
<div v-if="kind == 'sparko' || kind == 'lnbits'">
Expand Down

0 comments on commit 5574a49

Please sign in to comment.