index.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>ip2location</title>
  7. <style>
  8. *,
  9. ::after,
  10. ::before {
  11. box-sizing: border-box;
  12. }
  13. html {
  14. height: 100%;
  15. line-height: 1.5;
  16. }
  17. body {
  18. color: #212529;
  19. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  20. font-size: 16px;
  21. font-weight: 400;
  22. margin: 0;
  23. padding: 0;
  24. }
  25. .clear::after {
  26. clear: both;
  27. content: '';
  28. display: block;
  29. height: 0;
  30. line-height: 0;
  31. margin: 0;
  32. padding: 0;
  33. }
  34. html {
  35. min-height: 100%;
  36. height: 100%;
  37. position: relative;
  38. }
  39. body {
  40. margin: 0;
  41. padding: 0;
  42. position: relative;
  43. width: 100%;
  44. min-height: 100%;
  45. height: 100%;
  46. height: auto;
  47. display: table;
  48. }
  49. a {
  50. color: #0d6efd;
  51. text-decoration: none;
  52. }
  53. a:hover {
  54. text-decoration: underline;
  55. }
  56. .wrapper {
  57. padding: 15px;
  58. text-align: center;
  59. display: table-cell;
  60. vertical-align: middle;
  61. }
  62. h1, h2 {
  63. font-weight: 400;
  64. font-size: 34px;
  65. line-height: 36px;
  66. margin: 10px 0;
  67. }
  68. h2 {
  69. font-weight: 350;
  70. font-size: 14px;
  71. line-height: 18px;
  72. margin-bottom: 0;
  73. }
  74. .form-control {
  75. background-clip: padding-box;
  76. background-color: #fff;
  77. border-radius: 4px;
  78. border: 1px solid #ced4da;
  79. color: #495057;
  80. display: inline-block;
  81. font-family: inherit;
  82. font-size: 16px;
  83. height: 38px;
  84. line-height: 1.5;
  85. margin: 0;
  86. overflow: visible;
  87. padding: 6px 12px;
  88. transition: box-shadow .15s ease-in-out;
  89. vertical-align: middle;
  90. }
  91. .form-control:focus {
  92. background-color: #fff;
  93. border-color: #80bdff;
  94. box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
  95. color: #495057;
  96. outline: 0;
  97. }
  98. .btn {
  99. border-radius: 4px;
  100. border: 1px solid transparent;
  101. color: #fff;
  102. display: inline-block;
  103. font-size: 16px;
  104. font-weight: 400;
  105. height: 38px;
  106. line-height: 1.5;
  107. padding: 6px 12px;
  108. text-align: center;
  109. text-decoration: none;
  110. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  111. user-select: none;
  112. vertical-align: middle;
  113. white-space: nowrap;
  114. }
  115. .btn:focus,
  116. .btn:hover {
  117. text-decoration: none;
  118. }
  119. .btn:focus {
  120. box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
  121. outline: 0;
  122. }
  123. .btn.blue {
  124. background-color: #0d6efd;
  125. border-color: #0d6efd;
  126. }
  127. .btn.blue:hover {
  128. background-color: #0b5ed7;
  129. border-color: #0a58ca;
  130. }
  131. .btn.blue:focus {
  132. box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 50%);
  133. }
  134. form {
  135. margin-top: 15px;
  136. }
  137. button {
  138. margin-left: 15px;
  139. }
  140. @media only screen and (max-width:800px) {
  141. .wrapper {
  142. padding: 15px 0;
  143. }
  144. h1, h2 {
  145. padding: 0 15px;
  146. }
  147. form {
  148. display: block;
  149. padding: 0px 15px;
  150. }
  151. form .form-control,
  152. form .btn {
  153. display: block;
  154. width: 100%;
  155. }
  156. form button {
  157. margin-left: 0;
  158. margin-top: 15px;
  159. }
  160. }
  161. </style>
  162. </head>
  163. <body>
  164. <div class="wrapper">
  165. <h1><a href="/">ip2location</a></h1>
  166. <h2>{{$.Data.Additional.ClientIP}}</h2>
  167. <h2>{{$.Data.Additional.GeoIPData}}</h2>
  168. <form action="/" method="get">
  169. <input class="form-control" type="text" name="ip" value="{{$.Data.Additional.ClientIP}}" />
  170. <button class="btn blue" type="submit">Check</button>
  171. </form>
  172. </div>
  173. </body>
  174. </html>