summaryrefslogtreecommitdiff
path: root/templates/partials/client_geo.html
blob: fac437165c3f768cc2d44bea18f18c51fecf33ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="w-full flex flex-col text-2xl">
  <p>Уже вычислил тебя по ip:</p>
  <div class="flex w-full justify-around">
    <span>😎</span>
    <a
      class="block text-center underline decoration-primary-300"
      href="https://ip-api.com"
    >
      {{client_geo['query']}}
    </a>
    <span>😎</span>
  </div>

  {% if 'city' in client_geo %}
  <p>{{client_geo['country']}}</p>
  <p>{{client_geo['city']}}</p>
  {% endif %}
</div>