fireindexer-front/templates/index.html
Nathan Woodburn 5712c07b4d
All checks were successful
Build Docker / BuildImage (push) Successful in 32s
feat: Add mempool info
2025-02-05 18:37:13 +11:00

42 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nathan.Woodburn/</title>
<link rel="icon" href="/assets/img/favicon.png" type="image/png">
<link rel="stylesheet" href="/assets/css/index.css">
</head>
<body>
<div class="spacer"></div>
<div class="centre">
<h1>Nathan.Woodburn/ EXPLORER ALPHA</h1>
<h2>MEMPOOL</h2>
<div>
{{ mempool |safe}}
</div>
<h2>Search</h2>
<div>
<form action="/name" method="get" style="margin: 10px;">
<input type="text" name="name" placeholder="Name">
<button type="submit">Search</button>
</form>
<form action="/tx" method="get" style="margin: 10px;">
<input type="text" name="tx" placeholder="TXID">
<button type="submit">Search</button>
</form>
<form action="/block" method="get" style="margin: 10px;">
<input type="text" name="block" placeholder="Blockhash or Height">
<button type="submit">Search</button>
</form>
</div>
</div>
</body>
</html>