🌐
CodePen
codepen.io › leonam-silva-de-souza › pen › RwXWKEB
Animated Login & Register Form
Note: your code becomes un-folded during formatting. ... Visit your global Editor Settings. ... <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Animated Login-Signup Form</title> <link rel="stylesheet" href="style.css"> <link href='https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css' rel='stylesheet'> </head> <body> <div class="wrapper"> <span class="bg-animate"></span> <span class="bg-animate2"></span> <div class="form-box login"> <h2 class="animation" style="--i:0; --j:21;">Login</h2> <form action=
🌐
CodePen
codepen.io › RajRajeshDn › pen › baeyxR
Animated Login and Signup form
*{ margin: 0; padding: 0; } body{ background: #e9eaea; font-family: roboto; user-select: none; } .container{ width: 450px; margin: 30px auto; } .signup, .login{ width: 50%; background: #fff; float: left; height: 60px; line-height: 60px; text-align: center; cursor: pointer; text-transform: uppercase; } .signup-form, .login-form{ background: #fff; padding: 40px; clear: both; width: 100%; box-sizing: border-box; height: 400px; } .input{ width: 100%; padding: 20px; box-sizing: border-box; margin-bottom: 25px; border: 2px solid #e9eaea; color: #3e3e40; font-size: 14px; outline: none; transform: all
🌐
CodePen
codepen.io › shayanea › pen › eVMMgO
login/signup form animation
<div class="form-structor"> <div class="signup"> <h2 class="form-title" id="signup"><span>or</span>Sign up</h2> <div class="form-holder"> <input type="text" class="input" placeholder="Name" /> <input type="email" class="input" placeholder="Email" /> <input type="password" class="input" placeholder="Password" /> </div> <button class="submit-btn">Sign up</button> </div> <div class="login slide-up"> <div class="center"> <h2 class="form-title" id="login"><span>or</span>Log in</h2> <div class="form-holder"> <input type="email" class="input" placeholder="Email" /> <input type="password" class="input" placeholder="Password" /> </div> <button class="submit-btn">Log in</button> </div> </div> </div>
🌐
CodePen
codepen.io › suigeneriz › pen › oQdpNN
Animated Login/Signup form
Note: your code becomes un-folded during formatting. ... Visit your global Editor Settings. ... <html> <head> <title>Simple responsive login and signup form with tab controls </title> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" /> </head> <body> <div class="container"> <div class="tab"> <div class="tablinks" id="logintab" data-form-id="login">Login</div> <div class="tablinks" id="signuptab" data-form-id="signup">Sign up</div> </div> <div class="tabcontent" id="login"> <form> <label for="loginEm
🌐
CodePen
codepen.io › wrench13 › pen › jqNmOE
Sign Up and Login Animated Form
<p class="based">Based on <a ... class="button">Signup</label> </fieldset> <fieldset class="fieldset"> <h2>Have an account ?</h2> <p>Banjo tote bag bicycle rights, High Life sartorial cray craft beer whatever street art fap.</p> <div class="form_content form_content--noaccount"> </div> <label for="account" class="button">login</label> </fieldset> </form> ... // based on https://dribbble.com/shots/2311260-Day-1-Sign-Up-and-Login-Animated-Download-Template ...
🌐
CodePen
codepen.io › hurick › pen › Kyrvrj
Animated Login and Sign up
/** * Variables */ const signupButton = document.getElementById('signup-button'), loginButton = document.getElementById('login-button'), userForms = document.getElementById('user_options-forms') /** * Add event listener to the "Sign Up" button */ signupButton.addEventListener('click', () => { userForms.classList.remove('bounceRight') userForms.classList.add('bounceLeft') }, false) /** * Add event listener to the "Login" button */ loginButton.addEventListener('click', () => { userForms.classList.remove('bounceLeft') userForms.classList.add('bounceRight') }, false)
🌐
CodePen
codepen.io › tag › animated login form
Pens tagged 'animated login form' on CodePen
CodePen doesn't work very well without JavaScript · We're all for progressive enhancement, but CodePen is a bit unique in that it's all about writing and showing front end code, including JavaScript. It's required to use most of the features of CodePen · Need to know how to enable it?
🌐
CodePen
codepen.io › joshsorosky › pen › gaaBoB
Log in/Sign up screen animation
$(function() { $(".btn").click(function() { $(".form-signin").toggleClass("form-signin-left"); $(".form-signup").toggleClass("form-signup-left"); $(".frame").toggleClass("frame-long"); $(".signup-inactive").toggleClass("signup-active"); $(".signin-active").toggleClass("signin-inactive"); $(".forgot").toggleClass("forgot-left"); $(this).removeClass("idle").addClass("active"); }); }); $(function() { $(".btn-signup").click(function() { $(".nav").toggleClass("nav-up"); $(".form-signup-left").toggleClass("form-signup-down"); $(".success").toggleClass("success-left"); $(".frame").toggleClass("frame-
🌐
CodePen
codepen.io › harunpehlivan › full › abZQZya
Animated Login & Signup Form Design using HTML CSS & JavaScript
Edit Pen · {"__browser":{"country":"US","device":"unknown_device","mobile":false,"name":"chrome","platform":"unknown_platform","version":"537"},"__constants":{},"__CPDATA":{"domain_iframe":"https://cdpn.io","environment":"production","host":"codepen.io","iframe_allow":"accelerometer *; bluetooth ...
🌐
CodePen
codepen.io › ms_yogi › pen › MGEvJE
Login Form Animation
Note: your code becomes un-folded during formatting. ... Visit your global Editor Settings. ... <div class="wrapper"> <div class="login-text"> <button class="cta"><i class="fas fa-chevron-down fa-1x"></i></button> <div class="text"> <a href="">Login</a> <hr> <br> <input type="text" placeholder="Username"> <br> <input type="password" placeholder="Password"> <br> <button class="login-btn">Log In</button> <button class="signup-btn">Sign Up</button> </div> </div> <div class="call-text"> <h1>Show us your <span>creative</span> side</h1> <button>Join the Community</button> </div> </div>
Find elsewhere
🌐
CodePen
codepen.io › tag › signup
Pens tagged 'signup' on CodePen
CodePen doesn't work very well without JavaScript · We're all for progressive enhancement, but CodePen is a bit unique in that it's all about writing and showing front end code, including JavaScript. It's required to use most of the features of CodePen · Need to know how to enable it?
🌐
CodePen
codepen.io › basantrajshakti › pen › YzLKvew
Animated Signup/Login Form (Pure HTML, CSS & JS)
Animated login/signup form designed with pure html, css and javascript. Click on the Login or Register text to see the animation. You can also click on...
🌐
CodePen
codepen.io › Hakymz › pen › LYEoEbg
Animated signin and signup form
<!DOCTYPE html> <html lang="en"> <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" /> <link rel="stylesheet" href="style.css" /> <title>SignIn And SignUp</title> </head> <body> <div class="container"> <div class="form-container"> <div class="signin"> <form action="#" class="form-sign-in"> <h1>Sign In</h1> <input type="text" placeholder="Username" /> <input type="password" placeholder="Password" /> <a href="#">Forgot your password?</a> <button class="btn btn-form">SIGN IN</button> </form>
🌐
CodePen
codepen.io › emilcarlsson › pen › XbZprZ
Login & Signup Form
; -o-transition: all 0.30s ease-in-out; } .form-bottom-message a:hover { animation: borderslide-3px .5s; border-bottom: 1px solid rgba(255, 255, 255, 1); padding-bottom: 3px; } @keyframes borderslide-3px { 0% { padding-bottom: 1px; } 50% { padding-bottom: 3px; } } @keyframes borderslide-2px { 0% { padding-bottom: 1px; } 50% { padding-bottom: 2px; } } .close-form { /* form X button on top right */ display: block; position: absolute; width: 40px; height: 40px; right: 0; top: -40px; background: url("../img/icon-close.svg") no-repeat center center; text-indent: 100%; white-space: nowrap; overflow:
🌐
CodePen
codepen.io › boudra › pen › YXzLBN
Animated login form
In CodePen, whatever you write in the HTML editor is what goes within the <body> tags in a basic HTML5 template. If you need things in the <head> of the document, put that code here.
🌐
CodePen
codepen.io › OleksiiVylehzhanin › pen › xwgxmO
Animated Sign Up form
In CodePen, whatever you write in the HTML editor is what goes within the <body> tags in a basic HTML5 template. If you need things in the <head> of the document, put that code here.
🌐
CodePen
codepen.io › techaratech › pen › PorYrdx
Animated hacker login Form
Format HTML · View Compiled HTML · Analyze HTML · Maximize HTML Editor · Minimize HTML Editor · Fold All · Unfold All · <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CodePen - Animated Login Form using Html &amp; CSS Only</title> <link rel="stylesheet" href="./style.css"> </head> <body> <!-- partial:index.partial.html --> <section> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></span> <span></spa
🌐
CodePen
codepen.io › pradeeptomar21 › pen › zYvVyaB
Animated Js Login & Signup Form
* { box-sizing: border-box; } body ... .user_forms-signup { -webkit-animation: showSignUp 1s forwards; animation: showSignUp 1s forwards; } .user_options-forms.bounceLeft .user_forms-login { opacity: 0; visibility: hidden; -webkit-transform: translate3d(-120px, 0, 0); transform: translate3d(-120px, 0, 0); } .user_options-forms.bounceRight { -webkit-animation: bounceRight 1s forwards; animation: bounceRight 1s forwards; } /** * Responsive 990px */ @media screen and (max-width: ...
🌐
CodePen
codepen.io › emilcarlsson › embed › XbZprZ
CodePen Embed - Login & Signup Form
; -o-transition: all 0.30s ease-in-out; ... { animation: borderslide-2px .5s; padding-bottom: 2px; border-bottom: 1px solid rgba(246, 71, 71, 1); } #login, #signup, #reset-password { display: none; } #login.is-selected, #signup.is-selected, #reset-password.is-selected { display: block; } ...
🌐
CodePen
codepen.io › tag › login-form
Pens tagged 'login-form' on CodePen
CodePen doesn't work very well without JavaScript · We're all for progressive enhancement, but CodePen is a bit unique in that it's all about writing and showing front end code, including JavaScript. It's required to use most of the features of CodePen · Need to know how to enable it?