15 lines
402 B
HTML
15 lines
402 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ledger Quick Note</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
<h1>Confirm new Tx</h1>
|
|
<form action="/submit" method="POST">
|
|
<textarea name="tx" rows="15" cols="40">{{ .Tx }}</textarea><br>
|
|
<input type="submit">
|
|
</form>
|
|
</body>
|
|
</html>
|