ips.html 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html><html><head>
  2. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  3. <title>262235.xyz/ips | 批量ip查询地址</title>
  4. <meta name="keywords" content="开源WebAIP,开源IP定位,IP地址查询,极速批量IP地址查询,IP地址精确查询,IP精准定位,高精度IP定位,国外IP定位">
  5. <link rel="icon" href="/logo/favicon.png" type="image/png">
  6. <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
  7. <style type="text/css">
  8. body { padding-top: 40px; padding-bottom: 40px; background-color: #f5f5f5;
  9. font-family: "PingFang SC", "Helvetica Neue", "Helvetica", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif; }
  10. a, input, button { outline: none !important; }
  11. a:focus, a:hover, .btn-link:focus, .btn-link:hover { text-decoration: underline; text-underline-position: under; }
  12. .main { max-width: 950px; padding: 19px 29px 29px; margin: 0 auto 20px; background-color: #fff;
  13. border: 1px solid #e5e5e5; -webkit-border-radius: 5px; -moz-border-radius: 5px;
  14. border-radius: 5px; -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
  15. -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05); box-shadow: 0 1px 2px rgba(0,0,0,.05); }
  16. .label-site { font-size: 14px; vertical-align: middle; margin-right: 6px; }
  17. .text { width: 100%; height: 150px; }
  18. .btn-code { padding: 6px 16px; }
  19. </style>
  20. </head>
  21. <body>
  22. <nav class="navbar navbar-inverse navbar-fixed-top">
  23. <div class="container">
  24. <div class="navbar-header">
  25. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
  26. <span class="sr-only">Toggle navigation</span>
  27. <span class="icon-bar"></span>
  28. <span class="icon-bar"></span>
  29. <span class="icon-bar"></span>
  30. </button>
  31. <a class="navbar-brand" href="https://262235.xyz/ip/">Python Flask WebAPI</a>
  32. </div>
  33. <div id="navbar" class="collapse navbar-collapse">
  34. <ul class="nav navbar-nav">
  35. <li class="active"><a href="/">首页</a></li>
  36. <li><a href="https://github.com/hongwenjun/ip">github源码</a></li>
  37. <li><a href="https://hub.docker.com/r/hongwenjun/ip">docker镜像</a></li>
  38. <li><a href="https://262235.xyz/index.php/archives/342/">搭建WebAPI参考文章</a></li>
  39. </ul>
  40. </div><!--/.nav-collapse -->
  41. </div>
  42. </nav>
  43. <div class="main">
  44. <form action="/ips/" method="post">
  45. <fieldset>
  46. {% if ips %}
  47. <legend><h3><span class="label label-success label-site">262235.xyz/ips </span> 批量ip查询地址: <a class="label label-warning label-site" href="/ips/">重新查询</a></h3></legend>
  48. <textarea type="text" name ="ips" cols=120 rows=40 class="form-control text">{{ ips }}</textarea>
  49. {% else %}
  50. <legend><h3><span class="label label-success label-site">262235.xyz/ips </span> 批量ip查询地址: <a class="label label-info label-site" href="/">返回主页</a></h3></legend>
  51. <textarea type="text" name ="ips" cols=120 rows=20 class="form-control text" placeholder="输入多行包含ip地址的日志,例:
  52. http://192.168.1.189:5000/ips/
  53. 172.67.158.52 cloudflare.com"></textarea>
  54. <br><input type="submit" value="点击查询" class="btn btn-primary btn-code" >
  55. {% endif %}
  56. </fieldset>
  57. </form>
  58. </div></body></html>