You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
508 B
16 lines
508 B
extends layout
|
|
|
|
block headContent
|
|
title Search
|
|
|
|
block content
|
|
h1.h3 Search
|
|
hr
|
|
|
|
div(class="mb-5")
|
|
form(method="post", action="/search", class="form")
|
|
input(type="hidden", name="_csrf", value=csrfToken)
|
|
div(class="input-group input-group-lg")
|
|
input(type="text", class="form-control form-control-sm", name="query", placeholder="block height/hash, txid, address", value=(query), style="width: 300px;")
|
|
div(class="input-group-append")
|
|
button(type="submit", class="btn btn-primary") Search
|