Login Form

Developer
Size
3,997 Kb
Views
8,096

How do I make an login form?

Just a simple login form and experimenting with login submit animations. Inspiration from https://dribbble.com/amitjakhu. What is a login form? How do you make a login form? This script and codes were developed by Zoite on 29 November 2022, Tuesday.

Login Form Previews

Login Form - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>Login Form</title> <link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container"> <h1 class="title">Login Form</h1> <p class="description">Fill out the form below to sell your soul to the css overlord.</p> <input class="loginInput" placeholder="Username"/> <input class="loginInput" placeholder="Password" type="Password"/> <div id="footer"><span id="register"> <a class="register" href="#">Register</a></span> <input id="anim" type="checkbox" name="animation"/> <label id="circle" for="anim">Login</label> </div>
</div> <script src="js/index.js"></script>
</body>
</html>

Login Form - Script Codes CSS Codes

@import url("https://fonts.googleapis.com/css?family=Bree+Serif");
body { background: url("https://imgur.com/VM0LduR.png"); padding-top: 50px;
}
.title { font-family: 'Bree Serif'; margin-left: 45px; font-size: 1.8em;
}
.description { margin-left: 45px; margin-right: 45px; color: #678889; font-size: 0.8em; text-shadow: 1px 1px 0 #fff; margin-bottom: 20px;
}
#container { width: 300px; height: 350px; background: #f3f3f3; padding-top: 30px; margin: auto; border-radius: 5px; border: 1px solid #fff; position: relative;
}
.loginInput { display: block; width: 70%; height: 40px; margin: auto; margin-top: 10px; margin-bottom: 10px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; border: 1px solid #ddd; border-radius: 5px; outline: none; padding: 0 25px; font-size: 1.2em; text-shadow: 1px 1px 0 #fff;
}
.loginInput:hover { background-color: #dfe9ec;
}
.loginInput:focus { -webkit-box-shadow: 0 0 5px #51cbee; box-shadow: 0 0 5px #51cbee; border: 1px solid #51cbee; background-color: #dfe9ec;
}
.loginInput:nth-child(3) { margin-bottom: 20px;
}
#footer { position: absolute; top: 285px; right: 0; left: 0; bottom: 0; background-color: #d4dedf; overflow: hidden; padding-top: 30px; border-top: 1px solid #fff; text-align: center;
}
#register { display: inline; padding-right: 50px; font-family: 'Bree Serif'; font-size: 1.2em; text-shadow: 0px 1px 0 rgba(255,255,255,0.5);
}
#register .register { text-decoration: none; color: #000;
}
#register .register:hover { color: #3f9db8;
}
#circle { display: inline; margin: 0 auto; text-align: center; font-size: 1.2em; color: #fff; width: 100px; height: 30px; font-family: 'Bree Serif'; border-radius: 5px; padding: 5px 15px; background: #56c2e1; border: 1px solid #46b3d3; border-radius: 5px; -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; cursor: pointer;
}
#circle:hover { background: #3f9db8; border: 1px solid rgba(255,255,255,0.75); -webkit-box-shadow: inset 0 1px 3px rgba(0,0,0,0.5); box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
#anim { display: none; margin: 0;
}
#anim:checked + #circle { color: transparent; padding-top: 30px; padding-right: 20px; font-size: 0; border-radius: 50%; border-color: #488214; background-color: #bced91; background-repeat: no-repeat; background-position: center center; background-image: url("//imgur.com/RbhLLwJ.gif");
}

Login Form - Script Codes JS Codes

(function() {
}).call(this);
Login Form - Script Codes
Login Form - Script Codes
Home Page Home
Developer Zoite
Username zoite
Uploaded November 29, 2022
Rating 4
Size 3,997 Kb
Views 8,096
Do you need developer help for Login Form?

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!

Zoite (zoite) Script Codes
Create amazing SEO 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!