Browse Source

- updated screenshots

- cleanup connect UI
fix-133-memory-crash
Dan Janosik 7 years ago
parent
commit
ecb0746a4e
  1. BIN
      public/img/screenshots/block.png
  2. BIN
      public/img/screenshots/blocks.png
  3. BIN
      public/img/screenshots/connect.png
  4. BIN
      public/img/screenshots/home.png
  5. BIN
      public/img/screenshots/mempool-summary.png
  6. BIN
      public/img/screenshots/node-details.png
  7. BIN
      public/img/screenshots/rpc-browser.png
  8. BIN
      public/img/screenshots/transaction-raw.png
  9. BIN
      public/img/screenshots/transaction.png
  10. 43
      views/connect.pug

BIN
public/img/screenshots/block.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 429 KiB

After

Width:  |  Height:  |  Size: 506 KiB

BIN
public/img/screenshots/blocks.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 397 KiB

After

Width:  |  Height:  |  Size: 531 KiB

BIN
public/img/screenshots/connect.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 192 KiB

After

Width:  |  Height:  |  Size: 294 KiB

BIN
public/img/screenshots/home.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 309 KiB

After

Width:  |  Height:  |  Size: 518 KiB

BIN
public/img/screenshots/mempool-summary.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 378 KiB

BIN
public/img/screenshots/node-details.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 KiB

BIN
public/img/screenshots/rpc-browser.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 572 KiB

BIN
public/img/screenshots/transaction-raw.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 506 KiB

After

Width:  |  Height:  |  Size: 686 KiB

BIN
public/img/screenshots/transaction.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 440 KiB

After

Width:  |  Height:  |  Size: 514 KiB

43
views/connect.pug

@ -1,37 +1,26 @@
extends layout
block content
h1 BTC RPC Explorer
h1 RPC Connect
hr
:markdown-it
This tool is intended to be a simple, stateless, self-hosted explorer for the Bitcoin blockchain, driven by RPC calls to your own bitcoind node. Because it is stateless, it is easy to run but lacks some (many?) of the features of other explorers.
Start by connecting to your full, archiving bitcoind node. Make sure that the node you'll be connecting to has `txindex=1` set.
form(method="post", action="/connect")
div(class="card")
div(class="card-body")
h4(class="card-title") RPC Connect
hr
div(class="form-group")
label(for="input-host") Host / IP
input(type="text", name="host", class="form-control", value=host)
div(class="form-group")
label(for="input-host") Port
input(type="text", name="port", class="form-control", value=port)
div(class="form-group")
label(for="input-host") Host / IP
input(id="input-host", type="text", name="host", class="form-control", placeholder="Host / IP", value=host)
div(class="form-group")
label(for="input-host") Username
input(type="text", name="username", class="form-control", value=username)
div(class="form-group")
label(for="input-port") Port
input(id="input-port", type="text", name="port", class="form-control", placeholder="Port", value=port)
div(class="form-group")
label(for="input-host") Password
input(type="password", name="password", class="form-control")
div(class="form-group")
label(for="input-username") Username
input(id="input-username", type="text", name="username", class="form-control", placeholder="Username", value=username)
hr
div(class="form-group")
label(for="input-password") Password
input(id="input-password", type="password", name="password", class="form-control", placeholder="Password")
input(type="submit", class="btn btn-primary btn-block" value="Connect")
div(class="form-group")
input(type="submit", class="btn btn-primary btn-block" value="Connect")
Loading…
Cancel
Save