|
| 1 | +{% extends "pages/base_thank_you.html" %} |
| 2 | + |
| 3 | +{% block body %} |
| 4 | + <link href="https://cdn.jsdelivr.net/npm/tailwindcss@latest/dist/tailwind.min.css" rel="stylesheet"> |
| 5 | + <style type="text/css">body { |
| 6 | + background: rgba(237,242,247,1); |
| 7 | + background-size: cover; |
| 8 | + background-repeat: no-repeat; |
| 9 | + } |
| 10 | + .body-text { |
| 11 | + color: rgba(0,0,0,1); |
| 12 | + } |
| 13 | + .box-background { |
| 14 | + background: rgba(255,255,255,1); |
| 15 | + max-width: 500px; |
| 16 | + } |
| 17 | + .button-background { |
| 18 | + background: rgba(66,153,225,1); |
| 19 | + } |
| 20 | + .button-text { |
| 21 | + color: rgba(255,255,255,1); |
| 22 | + } |
| 23 | + h1 { |
| 24 | + margin: 10px 0 20px 0; |
| 25 | + font-weight: bold; |
| 26 | + } |
| 27 | + </style> |
| 28 | + <body> |
| 29 | + <div class="flex justify-center items-center w-screen h-screen"> |
| 30 | + <div class="box-background rounded p-6 text-center"> |
| 31 | + <img src="" style="max-width: 200px; margin: 0 auto 10px;"> |
| 32 | + <svg class="mx-auto" width="50px" height="50px" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="lds-rolling"> |
| 33 | + <circle cx="50" cy="50" fill="none" stroke="rgba(51,122,183,1)" stroke-width="10" r="35" stroke-dasharray="164.93361431346415 56.97787143782138" transform="rotate(155.901 50 50)"> |
| 34 | + <animateTransform attributeName="transform" type="rotate" calcMode="linear" values="0 50 50;360 50 50" keyTimes="0;1" dur="1s" begin="0s" repeatCount="indefinite"></animateTransform> |
| 35 | + </circle> |
| 36 | + </svg> |
| 37 | + <h1 class="body-text font-bold text-xl">Parabéns, sua vaga foi reservada! 😀</h1> |
| 38 | + <p class="body-text"> |
| 39 | + Você está sendo redirecionado(a) para o grupo da Masterclass. |
| 40 | + Lá enviaremos o link de acesso à aula e o material. |
| 41 | + </p> |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + <script> |
| 45 | + |
| 46 | + // Redirect |
| 47 | + function redirect() { |
| 48 | + window.location.href = 'https://www.python.pro.br/r/grupo-rumo-a-primeira-vaga' |
| 49 | + } |
| 50 | + |
| 51 | + setTimeout(function () { |
| 52 | + redirect() |
| 53 | + }, 6000); |
| 54 | + |
| 55 | + </script> |
| 56 | + </body> |
| 57 | +{% endblock %} |
0 commit comments