DarkForm is a ui example of dark neumorphism login from using pure css3 and html5.
How to use it?
Here is the source code:
<!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>Dark Neumorphism Login Form UI Design</title> <link rel="stylesheet" href="main.css"> </head> <body> <div class="form"> <h2>Login</h2> <div class="input"> <div class="inputBox"> <label>Username</label> <input type="text" name="" placeholder="example@xyz.com"> </div> <div class="inputBox"> <label>Password</label> <input type="text" name="" placeholder="********"> </div> <div class="inputBox"> <input type="submit" name="" value="Sign In"> </div> <p class="forgot">Forgot Password <a href="#">Click Here</a></p> </div> </body> </html>
We should import main.css in our html file.