generated from nathanwoodburn/python-webserver-template
Nathan Woodburn
e612637589
All checks were successful
Build Docker / BuildImage (push) Successful in 35s
33 lines
928 B
HTML
33 lines
928 B
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/chain.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="spacer"></div>
|
|
<div class="centre">
|
|
<h1>Nathan.Woodburn/ {{chain}}</h1>
|
|
|
|
<form method="post">
|
|
<h3>Import address</h3>
|
|
<input type="text" name="address" placeholder="Address">
|
|
<input type="submit" value="Check">
|
|
</form>
|
|
|
|
<form action="/chains/{{chain}}/addAPIKey" method="post">
|
|
<h3>Add API Key</h3>
|
|
<input type="text" name="apiKey" placeholder="API Key">
|
|
<input type="submit" value="Add">
|
|
</form>
|
|
</div>
|
|
<div>
|
|
{{transactions|safe}}
|
|
</div>
|
|
</body>
|
|
</html> |