index.html 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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:not(:disabled):not(.disabled) {
  124. cursor: pointer;
  125. }
  126. .btn.blue {
  127. background-color: #0d6efd;
  128. border-color: #0d6efd;
  129. }
  130. .btn.blue:hover {
  131. background-color: #0b5ed7;
  132. border-color: #0a58ca;
  133. }
  134. .btn.blue:focus {
  135. box-shadow: 0 0 0 0.25rem rgb(49 132 253 / 50%);
  136. }
  137. form {
  138. margin-top: 15px;
  139. }
  140. button {
  141. margin-left: 15px;
  142. }
  143. @media only screen and (max-width:800px) {
  144. .wrapper {
  145. padding: 15px 0;
  146. }
  147. h1, h2 {
  148. padding: 0 15px;
  149. }
  150. form {
  151. display: block;
  152. padding: 0px 15px;
  153. }
  154. form .form-control,
  155. form .btn {
  156. display: block;
  157. width: 100%;
  158. }
  159. form button {
  160. margin-left: 0;
  161. margin-top: 15px;
  162. }
  163. }
  164. </style>
  165. </head>
  166. <body>
  167. <div class="wrapper">
  168. <h1><a href="/">ip2location</a></h1>
  169. <h2>{{$.Data.Additional.ClientIP}}</h2>
  170. <h2>{{$.Data.Additional.GeoIPData}}</h2>
  171. <form action="/" method="get">
  172. <input class="form-control" type="text" name="ip" value="{{$.Data.Additional.ClientIP}}" />
  173. <button class="btn blue" type="submit">Check</button>
  174. </form>
  175. </div>
  176. </body>
  177. </html>