ips.html 577 B

1234567891011121314151617
  1. <!DOCTYPE html><html><body>
  2. <form action="/ips/" method="post">
  3. <fieldset>
  4. {% if ips %}
  5. <legend>批量ip查询地址: <a href="/ips/">点击返回</a> </legend>
  6. <textarea type="text" name ="ips" cols=120 rows=100>
  7. {{ ips }}</textarea>
  8. {% else %}
  9. <legend>批量ip查询地址:</legend>
  10. <textarea type="text" name ="ips" cols=120 rows=20 placeholder="输入多行包含ip地址的日志,例:
  11. http://192.168.1.189:5000/ips/
  12. 172.67.158.52 cloudflare.com"></textarea>
  13. <br>
  14. <input type="submit" value="点击查询">
  15. {% endif %}
  16. </fieldset>
  17. </form></body></html>