www/src/layouts/page/authentication-success.html

38 lines
938 B
HTML
Raw Normal View History

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 success-container">
<div class="success-content">
<h1 class="text-center display-4">Thanks for Authenticating!</h1>
<p class="lead text-center">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>
<button onclick="window.location.href='/';" id="return-home" class="detail-btn-large"><i class="icon-enter-arrow"></i>RETURN HOME</button>
2022-09-30 18:09:44 +03:00
</div>
</div>
</div>
</div>
<style>
.success-container{
height: 80vh;
2022-09-30 18:09:44 +03:00
position: relative;
}
.success-content{
margin: 0;
position: absolute;
top: 50%;
transform: translateY(-50%);
2022-09-30 18:09:44 +03:00
}
#return-home{
display:block;
2022-09-30 18:09:44 +03:00
margin-left:auto;
margin-right:auto;
}
</style>
{{ end }}