mirror of
https://github.com/janoside/btc-rpc-explorer.git
synced 2026-08-13 12:33:13 +02:00
- major visual refresh - new design, layout, fonts, colors, icons, etc
- new dark theme, now the default
- new app icon ("Bitcoin Map Marker")
- cleaner, simpler homepage content
- css for light/dark themes built from scss ("npm run css")
- theme-switcher button in footer, instead of checked items in header dropdown
- cleanup header links and dropdowns, and larger search box
- url change: /unconfirmed-tx -> /mempool-tx
- support for "estimated coin supply" used at startup or on slow devices when UTXO set unavailable
- display fee rate along with TX details on /mempool-tx
- copy-to-clipboard added for lots of longer strings
- major code reuse improvements with pug mixins
- simplify userSettings
- minor error handling improvements for /tx pages in prune/noTxIndex situations
- query fewer tx inputs on /address pages for performance
- exponents on /difficulty-history graph labels
- fixed colors of labels/gridlines on graphs (esp in dark theme)
- drop LTC config (no longer maintained)
- /admin/resetUserSettings
27 lines
827 B
Text
27 lines
827 B
Text
extends layout
|
|
|
|
block content
|
|
+pageTitle("RPC Connect")
|
|
|
|
form(method="post", action="./connect")
|
|
input(type="hidden", name="_csrf", value=csrfToken)
|
|
|
|
.mb-3
|
|
label(for="input-host") Host / IP
|
|
input.form-control(id="input-host", type="text", name="host", placeholder="Host / IP", value=host)
|
|
|
|
.mb-3
|
|
label(for="input-port") Port
|
|
input.form-control(id="input-port", type="text", name="port", placeholder="Port", value=port)
|
|
|
|
.mb-3
|
|
label(for="input-username") Username
|
|
input.form-control(id="input-username", type="text", name="username", placeholder="Username", value=username)
|
|
|
|
.mb-3
|
|
label(for="input-password") Password
|
|
input.form-control(id="input-password", type="password", name="password", placeholder="Password")
|
|
|
|
.mb-3
|
|
input.btn.btn-primary.w-100(type="submit" value="Connect")
|
|
|