generated from nathanwoodburn/python-webserver-template
Nathan Woodburn
6ff1afd46d
All checks were successful
Build Docker / BuildImage (push) Successful in 51s
43 lines
1.3 KiB
HTML
43 lines
1.3 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/chain.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="spacer"></div>
|
|
<div class="centre">
|
|
<h1>Nathan.Woodburn/ {{chain}}</h1>
|
|
<a href="/chains/sync/{{chain}}">Sync</a>
|
|
|
|
<div class="address-list">
|
|
<h3>Imported Addresses</h3>
|
|
<div class="address-list-item">
|
|
{% for address in addresses %}
|
|
{{address}} <a href="/chains/{{ chain }}/delete/{{address}}">Delete</a>
|
|
<br>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
<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>Set API Key</h3>
|
|
<input type="text" name="apiKey" placeholder="API Key">
|
|
<input type="submit" value="Add">
|
|
</form>
|
|
</div>
|
|
<div>
|
|
{{transactions|safe}}
|
|
</div>
|
|
</body>
|
|
</html> |