2022-09-30 18:09:44 +03:00
{{ define "main" }}
2022-09-30 18:23:17 +03:00
< div class = "container auth-success-container" >
2022-09-30 18:09:44 +03:00
< div class = "row" >
< div class = "col my-auto" >
2022-09-30 18:23:17 +03:00
< div class = "success-div p-4" style = "
2022-09-30 18:09:44 +03:00
margin: 0;
position: absolute;
top: 50%;
left: 50%;
width:70%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);">
< h1 class = "display-4 text-center" > Thanks for Authenticating!< / h1 >
2022-10-11 15:48:14 +03:00
< p class = "lead text-center mb-5" > You've just become an integral part in the future of the internet, AND you'll be entitled to a variety of exciting rewards such as minted NFT badges to honor your work thus far.< / p >
2022-09-30 18:09:44 +03:00
< a class = "btn btn-primary mb-3" href = "https://tea.xyz"
2022-10-11 15:48:14 +03:00
role="button">Return to Home< / a >
2022-09-30 18:09:44 +03:00
< / div >
< / div >
< / div >
< / div >
< style >
2022-09-30 18:23:17 +03:00
.auth-success-container{
2022-09-30 18:09:44 +03:00
height:100vh;
position: relative;
background-image: url("/Images/tea-steam-dark.svg");
background-position: center;
background-repeat: no-repeat;
background-size: contain;
}
.btn-primary{
display: block;
margin-left:auto;
margin-right:auto;
}
.success-gif{
width: 7vw;
height: 7vw;
border-radius: 100px;
background-image: url("/Images/auth-success.gif");
background-position: center;
background-repeat: no-repeat;
background-size: cover;
display: block;
margin-left:auto;
margin-right:auto;
}
@media only screen and (max-width: 720px) {
2022-09-30 18:23:17 +03:00
.success-div{
2022-09-30 18:09:44 +03:00
width: 100% !important;
}
.success-gif{
width: 18vw;
height: 18vw;
}
}
< / style >
{{ end }}