Login to continue

Developer
Size
2,234 Kb
Views
34,408

How do I make an login to continue?

Does this need explanation?. What is a login to continue? How do you make a login to continue? This script and codes were developed by Mahesh Bhagat on 27 August 2022, Saturday.

Login to continue Previews

Login to continue - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Login to continue</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <span href="#" class="button" id="toggle-login">Login</span>
<div id="login"> <div id="triangle"></div> <h1>Log in</h1> <form> <input type="email" placeholder="Email" /> <input type="password" placeholder="Password" /> <input type="submit" value="Log in" /> </form>
</div> <script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

Login to continue - Script Codes CSS Codes

@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,700);
*{margin:0;padding:0;}
body{ background:#567; font-family:'Open Sans',sans-serif;
}
.button{ width:100px; background:#3399cc; display:block; margin:0 auto; margin-top:1%; padding:10px; text-align:center; text-decoration:none; color:#fff; cursor:pointer; transition:background .3s; -webkit-transition:background .3s;
}
.button:hover{ background:#2288bb;
}
#login{ width:400px; margin:0 auto; margin-top:8px; margin-bottom:2%; transition:opacity 1s; -webkit-transition:opacity 1s; display:none;
}
#triangle{ width:0; border-top:12x solid transparent; border-right:12px solid transparent; border-bottom:12px solid #3399cc; border-left:12px solid transparent; margin:0 auto;
}
#login h1{ background:#3399cc; padding:20px 0; font-size:140%; font-weight:300; text-align:center; color:#fff;
}
form{ background:#f0f0f0; padding:6% 4%;
}
input[type="email"],input[type="password"]{ width:92%; background:#fff; margin-bottom:4%; border:1px solid #ccc; padding:4%; font-family:'Open Sans',sans-serif; font-size:95%; color:#555;
}
input[type="submit"]{ width:100%; background:#3399cc; border:0; padding:4%; font-family:'Open Sans',sans-serif; font-size:100%; color:#fff; cursor:pointer; transition:background .3s; -webkit-transition:background .3s;
}
input[type="submit"]:hover{ background:#2288bb;
}

Login to continue - Script Codes JS Codes

$('#toggle-login').click(function(){ $('#login').toggle();
});
Login to continue - Script Codes
Login to continue - Script Codes
Home Page Home
Developer Mahesh Bhagat
Username mymahesh11
Uploaded August 27, 2022
Rating 3
Size 2,234 Kb
Views 34,408
Do you need developer help for Login to continue?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Mahesh Bhagat (mymahesh11) Script Codes
Create amazing web content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!