fireindexer-front/templates/index.html

33 lines
989 B
HTML
Raw Normal View History

2025-02-05 17:15:44 +11:00
<!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">
2025-02-05 18:08:31 +11:00
<h1>Nathan.Woodburn/ EXPLORER ALPHA</h1>
<form action="/name" method="get">
<input type="text" name="name" placeholder="Name">
<button type="submit">Search</button>
</form>
<form action="/tx" method="get">
<input type="text" name="tx" placeholder="TXID">
<button type="submit">Search</button>
</form>
<form action="/block" method="get">
<input type="text" name="block" placeholder="Blockhash or Height">
<button type="submit">Search</button>
</form>
2025-02-05 17:15:44 +11:00
</div>
2025-02-05 18:08:31 +11:00
2025-02-05 17:15:44 +11:00
</body>
</html>