mirror of
https://github.com/ivabus/www
synced 2024-11-22 16:05:06 +03:00
thanks for authenticating page fix
This commit is contained in:
parent
672cad96b0
commit
8e5f98f93c
1 changed files with 19 additions and 8 deletions
|
@ -1,29 +1,40 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
|
|
||||||
<div class="container auth-success-container">
|
<div class="section">
|
||||||
<div class="row">
|
<div class="container auth-success-container">
|
||||||
<div class="col success-container">
|
<div class="row">
|
||||||
<div class="success-content">
|
<div class="col success-container">
|
||||||
<h1 class="text-center display-4">Thanks for Authenticating!</h1>
|
<div class="success-content">
|
||||||
<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>
|
<h3 class="text-center display-1">Thanks for Authenticating!</h3>
|
||||||
<button onclick="window.location.href='/';" id="return-home" class="detail-btn-large"><i class="icon-enter-arrow"></i>RETURN HOME</button>
|
<p class="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>
|
||||||
|
<button onclick="window.location.href='/';" id="return-home" class="detail-btn-large"><i class="icon-enter-arrow"></i>RETURN HOME</button>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
|
html,body{
|
||||||
|
background-color: #1a1a1a;
|
||||||
|
max-width: 1920px;
|
||||||
|
overflow-x: hidden;
|
||||||
|
margin-top: 2.2vw;
|
||||||
|
}
|
||||||
|
|
||||||
.success-container{
|
.success-container{
|
||||||
height: 80vh;
|
height: 80vh;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
padding: 0px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.success-content{
|
.success-content{
|
||||||
margin: 0;
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 50%;
|
top: 50%;
|
||||||
transform: translateY(-50%);
|
transform: translateY(-50%);
|
||||||
|
padding: 4vw;
|
||||||
}
|
}
|
||||||
|
|
||||||
#return-home{
|
#return-home{
|
||||||
|
|
Loading…
Reference in a new issue