🌐
CodePen
codepen.io › Dru-Go › pen › jONobQB
Transparent Login Form
Note: your code becomes un-folded during formatting. ... Visit your global Editor Settings. ... <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Login Form Design</title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="box"> <h2>Login</h2> <form action=""> <div class="inputBox"> <input type="text" name="" required=""> <label for="">Username</label> </div> <div class="inputBox"> <input type="password" name="" required=""> <label for="">Password</label> </div> <input type="submit" name="" value="Submit"> </form> </div> </body> </html>
CodePen Login
If the email address associated with your social account matches the email address of your CodePen account, you'll be logged in. You aren't locked to any particular social account. Questions? contact support
CodePen PRO
Get every feature CodePen has to offer starting at $8/month and start building code faster and easier · Our most popular PRO feature, Privacy, lets you control who sees your content
Double click mouse test page
HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug · Learn more · Versions
CodePen Free Sign Up
By signing up, you agree to CodePen's Terms of Service , Code of Conduct , and Privacy Policy · Unlock the full power of CodePen with our PRO plans
🌐
CodePen
codepen.io › _vidyasheela › pen › qBjzPGb
Responsive Transparent Login Form
<a href="#"> Create an Account</a></p> </form> </div> </body> </html> ... body { padding: 0; margin: 0; font-family: Arial, Helvetica, sans-serif; color: white; } .background { background: url("https://vidyasheela.com/web-contents/website-components/Login-Pages/transparent-login-page-template-in-html-and-css/background-img.jpg") rgba(0, 0, 0, 0.61); background-repeat: no-repeat; background-size: cover; background-blend-mode: darken; position: absolute; top: 0; bottom: 0; left: 0; right: 0; z-index: -1; filter: blur(5px); min-height: 800px; } .container { display: flex; flex-direction: column;
🌐
CodePen
codepen.io › eren12331 › pen › xxbJeaW
Transparent Login Form with floating Placeholder Text
Note: your code becomes un-folded during formatting. ... Visit your global Editor Settings. ... <div class="box"> <h2>Login</h2> <form> <div class="inputBox"> <input type="email" name="email" required onkeyup="this.setAttribute('value', this.value);" value=""> <label>Username</label> </div> <div class="inputBox"> <input type="password" name="password" required value="" onkeyup="this.setAttribute('value', this.value);" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" title="Must contain at least one number and one uppercase and lowercase letter, and at least 8 or more characters"> <label>Password</label> </div> <input type="submit" name="sign-in" value="Sign In"> </form> </div>
🌐
CodePen
codepen.io › FrankieDoodie › pen › bxpVYN
Transparent Login Form with HTML and CSS
Note: your code becomes un-folded during formatting. ... Visit your global Editor Settings. ... <div class="loginBox"> <img class="user" src="http://icons.iconarchive.com/icons/hopstarter/face-avatars/128/Male-Face-O1-icon.png"> <h2>Log In Here</h2> <form> <p>Email</p> <input type="email" name="email" placeholder="Enter Email" required> <p>Password</p> <input type="password" name="password" placeholder="Enter Password" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" title="Must contain at least one number and one uppercase and lowercase letter, and at least 8 or more characters" required> <input type="submit" name="sign-in" value="Sign In"> <a href="#">Forget Password</a> </form> </div>
🌐
CodePen
codepen.io › Harsha-Jumde › pen › bGQpQrP
Amazing Transparent Login Form || HTML/CSS
Note: your code becomes un-folded during formatting. ... Visit your global Editor Settings. ... <div class="login-box"> <h1>Login</h1> <div class="textbox"> <i class="fas fa-user"></i> <input type="text" placeholder="Username"> </div> <div class="textbox"> <i class="fas fa-lock"></i> <input type="password" placeholder="Password"> </div> <input type="button" class="btn" value="Sign in"> </div>
🌐
CodePen
codepen.io › nimtos › pen › dMqQgm
Simple Transparent Login Form
$shadow1 : 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); $shadow2 : 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23); $shadow3 : 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); $shadow4 : 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22); $shadow5 : 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22); *, *:before, *:after { margin: 0; padding: 0; box-sizing: border-box; } body { color: white; display: flex; padding: 20px; min-height: 100vh; position: relative; flex-direction: column; justify-content: center; font-family: 'Helvetica Neue', Helvetica, Ar
🌐
CodePen
codepen.io › tag › transparent login form
Pens tagged 'transparent 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 › woi › pen › QWwEqKW
Transparent Material Login Form
@import url(https://fonts.googleapis.com/css?family=Lato); body { display: flex; height: 100vh; justify-content: center; align-items: center; font-family: Lato, sans-serif; background: url("https://i.loli.net/2019/10/18/buDT4YS6zUMfHst.jpg") 0 / cover fixed; } .login-form { display: flex; flex-direction: column; align-items: center; padding: 3em; color: white; background: rgba(0, 0, 0, 0.8); border-radius: 10px; box-shadow: 0 0.4px 0.6px rgba(0, 0, 0, 0.141), 0 1px 1.3px rgba(0, 0, 0, 0.202), 0 1.9px 2.5px rgba(0, 0, 0, 0.25), 0 3.4px 4.5px rgba(0, 0, 0, 0.298), 0 6.3px 8.4px rgba(0, 0, 0, 0.3
🌐
CodePen
codepen.io › alaminhossaien › pen › oNMpJNe
Animated Transparent Login Form
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <link rel="stylesheet" href="style.css" /> </head> <body> <div class="container"> <div class="avatar"> <img src="https://alamin-hossain.vercel.app/_next/image?url=/_next/static/media/profile.95093497.jpeg&w=1080&q=75" alt="" /> </div> <form action=""> <div class="txt-field"> <input type="text" required /> <span></span> <label>Username</label> </div> <div class="txt-field"> <input type="password" required /> <span></span> <label>Password</label> </div> <div class="pass">Forgot Password</div> <input type="submit" value="Login" /> <div class="sing_up_link">Not a member?
Find elsewhere
🌐
CodePen
codepen.io › fastroware › pen › jOQmowO
Transparent Login Form with Red background
<div class="container"> <div class="card"> <form> <input type="text" placeholder="Username"> <input type="password" placeholder="Password"> <button type="submit">Login</button> </form> <div class="switch"> <span>Don't have an account?</span> <button>Register</button> </div> </div> </div> ... body { margin: 0; padding: 0; background: linear-gradient(to bottom right, #f6226f, #ff304f); display: flex; justify-content: center; align-items: center; min-height: 100vh; } .container { display: flex; justify-content: center; align-items: center; height: 100%; } .card { width: 300px; background-color: t
🌐
DEV Community
dev.to › peboy › how-to-create-the-perfect-transparent-login-form-2lfa
How to Create the Perfect Transparent Login Form - DEV Community
May 9, 2024 - Now I'll walk through every step for coding your own transparent login form. We'll cover the setup, styles, user-friendly touches, everything.
🌐
CodePen
codepen.io › Hakymz › pen › dyPzGBQ
Transparent registration and login form with html and css
* { padding: 0; margin: 0; box-sizing: ... 2px transparent; cursor: pointer; transition: 0.5s; } .load.show { border-bottom-color: royalblue; } .form a { color: white; text-decoration: none; display: block; margin: 15px; text-align: center; transition: 0.5s; } .form a:hover { color: royalblue; } .login { display: ......
🌐
CodePen
codepen.io › chiaralyn › pen › jOrxMMq
Animated & Transparent Login Form with Water Effect
Note: your code becomes un-folded during formatting. ... Visit your global Editor Settings. ... <body class="water" onload="scale_in()" ;> <div class="main"> <!-- Login Form --> <div class="container-fluid container_form scale-in-center" id="form"> <div class="row"> <div class="col-sm-4 col-md-2 col-lg-4"></div> <div class="col-sm-4 col-md-8 col-lg-4"> <div class="general_container"> <div class="row cent title_div"> <div class="col-md-12 tracking-in-expand-fwd"> <h1>Inside Water</h1> </div> </div> <form method="post" action="index.php"> <div class="form-group email_div"> <label for="exampleInp
🌐
CodePen
codepen.io › huanlinhuang › full › NzwGJg
Transparent Login Form with HTML & CSS
Edit Pen · {"__browser":{"cou...tants":{},"__CPDATA":{"domain_iframe":"https://cdpn.io","environment":"production","host":"codepen.io","iframe_allow":"accelerometer *; bluetooth ......
🌐
CodePen
codepen.io › phan-ha › pen › WNjErPm
Amazing Transparent Login Form With A Neon Button Just By Using HTML & CSS
:root { --color-blue: #03e9f4; ... transparent; } .login .col-item label { position: absolute; top: 0; left: 0; padding: 10px 0; font-size: 16px; color: #fff; pointer-events: none; transition: 0.5s; } .login .col-item input:focus ~ label, .login ...
🌐
CodePen
codepen.io › ranginang67 › pen › MLdagg
login/register form tab (transparent)
<!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"> <title>login/register form transparent</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous"> </head> <body> <div class="bg-box"> <div class="box"> <div class="tab"> <button i
🌐
CodePen
codepen.io › vimala19 › full › yLObzrg
Transparent Login Form || HTML/CSS
Edit Pen · {"__browser":{"country":"US","device":"unknown_device","mobile":false,"name":"chrome","platform":"pc","version":"135"},"__constants":{},"__CPDATA":{"domain_iframe":"https://cdpn.io","environment":"production","host":"codepen.io","i...
🌐
CodePen
codepen.io › tag › transparent login form ui
Pens tagged 'transparent login form ui' on CodePen
An online code editor, learning environment, and community for front-end web development using HTML, CSS and JavaScript code snippets, projects, and web applications.
🌐
CodePen
codepen.io › Tushkiz › pen › kGMejj
Login Form
{ text-align: center; color: #777; } .login-form { text-align: center; } .control-group { margin-bottom: 10px; } input { text-align: center; background-color: #ECF0F1; border: 2px solid transparent; border-radius: 3px; font-size: 16px; ...
🌐
GitHub
gist.github.com › bokir-tampan › f1678dc284d528f4ea04b9c87aa0c207
Transparent login form (HTML&CSS) · GitHub
transparent-login-form-html-css.markdown · A Pen by Nazim on CodePen. License. Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment ·