github.com/pdaian/flashboys2@v0.0.0-20190718175736-b101c35361f0/go-ethereum/arbmonmon/templates/insertpage.html (about)

     1  <!DOCTYPE html>
     2  <html>
     3  <head>
     4      <title>Manage Monitored Addresses</title>
     5  <style>
     6  tr {
     7      font-family: monospace, monospace;
     8  }
     9  </style>
    10  </head>
    11  <body>
    12      <h3>Manage Monitored Addresses</h3>
    13      <br>
    14      <h4>Add to List</h4>
    15      <form action="/lolpostsomeaddressses" method="post">
    16          <textarea name="updateList" placeholder="One address per line, no quotes or punctuation, prepended by '0x', don't care about checksums or caps - for example, a valid address would be 0xDeADBEEF1337caFEBAbE1337CacAfACe1337C0dE" cols="50" rows="30"></textarea>
    17          <input type="submit" value="Submit">
    18      </form>
    19      <br>
    20      <h4>Current List:</h4> 
    21      <table style="width:100%">
    22          {% for statusrow in outlist %}
    23              <tr>
    24                  <th>{{ statusrow }}</th>
    25              </tr>
    26          {% endfor %}
    27      </table>
    28  </body>
    29  </html>