bs_panel_template.html 642 B

1234567891011121314151617181920
  1. <!doctype html>
  2. <html>
  3. <head><title>Veil panel</title></head>
  4. <body>
  5. <h2>Delete</h2>
  6. <form action="delete" method="POST">
  7. <input name="addr" placeholder="Site or page address">
  8. <input name="password" type="password">
  9. <input type="submit" value="Delete!">
  10. </form>
  11. <hr>
  12. <h2>Add new</h2>
  13. <form action="addnew" method="POST">
  14. <textarea name="data" placeholder="Site or page address one per line"></textarea>
  15. <input name="password" type="password">
  16. <input type="submit" value="Add">
  17. </form>
  18. </body>
  19. </html>